Skip to content

Commit b4b1272

Browse files
committed
Updated EC2 AMIs in all regions for security updates.
1 parent 29ba038 commit b4b1272

2 files changed

Lines changed: 16 additions & 16 deletions

File tree

contrib/ec2/provision-ec2-controller.sh

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -42,21 +42,21 @@ region=$1
4242
# see contrib/prepare-ubuntu-ami.sh for instructions
4343
# on creating your own deis-optmized AMIs
4444
if [ "$region" == "ap-northeast-1" ]; then
45-
image=ami-0b45de0a
45+
image=ami-39bfda38
4646
elif [ "$region" == "ap-southeast-1" ]; then
47-
image=ami-eaf9b3b8
47+
image=ami-c0613492
4848
elif [ "$region" == "ap-southeast-2" ]; then
49-
image=ami-e9970bd3
49+
image=ami-9741ddad
5050
elif [ "$region" == "eu-west-1" ]; then
51-
image=ami-c021c1b7
51+
image=ami-39bc5e4e
5252
elif [ "$region" == "sa-east-1" ]; then
53-
image=ami-b5da7ca8
53+
image=ami-0775d31a
5454
elif [ "$region" == "us-east-1" ]; then
55-
image=ami-a30b57ca
55+
image=ami-fa99c193
5656
elif [ "$region" == "us-west-1" ]; then
57-
image=ami-30e3d475
57+
image=ami-802412c5
5858
elif [ "$region" == "us-west-2" ]; then
59-
image=ami-ca63fafa
59+
image=ami-0e7be33e
6060
else
6161
echo "Cannot find AMI for region: $region"
6262
exit 1

provider/ec2.py

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -17,14 +17,14 @@
1717
# Deis-optimized EC2 amis -- with 3.8 kernel, chef 11 deps,
1818
# and large docker images (e.g. buildstep) pre-installed
1919
IMAGE_MAP = {
20-
'ap-northeast-1': 'ami-0b45de0a',
21-
'ap-southeast-1': 'ami-eaf9b3b8',
22-
'ap-southeast-2': 'ami-e9970bd3',
23-
'eu-west-1': 'ami-c021c1b7',
24-
'sa-east-1': 'ami-b5da7ca8',
25-
'us-east-1': 'ami-a30b57ca',
26-
'us-west-1': 'ami-30e3d475',
27-
'us-west-2': 'ami-ca63fafa',
20+
'ap-northeast-1': 'ami-39bfda38',
21+
'ap-southeast-1': 'ami-c0613492',
22+
'ap-southeast-2': 'ami-9741ddad',
23+
'eu-west-1': 'ami-39bc5e4e',
24+
'sa-east-1': 'ami-0775d31a',
25+
'us-east-1': 'ami-fa99c193',
26+
'us-west-1': 'ami-802412c5',
27+
'us-west-2': 'ami-0e7be33e',
2828
}
2929

3030

0 commit comments

Comments
 (0)