1
0
Fork 0
mirror of synced 2025-04-06 06:33:34 +03:00

Add the sorting function

This commit is contained in:
Scottpedia 2020-08-23 17:36:47 -04:00
parent c05f29007a
commit 40cb525803

View file

@ -594,6 +594,9 @@
[
"import boto3",
"import cfnresponse",
"def creation_date(e):",
" return e['CreationDate']",
"",
"def handler(event, context):",
" try:",
" regionName = event['ResourceProperties']['Region']",
@ -601,13 +604,15 @@
" ec2 = boto3.client('ec2',regionName)",
" IAMName = ''",
" if distribution == 'Ubuntu16.04':",
" IAMName = 'ami-ubuntu-16.04-1.12.0-00-1538138520'",
" IAMName = 'ubuntu/images/hvm-ssd/ubuntu-xenial-16.04-amd64-server-*'",
" elif distribution == 'Ubuntu18.04':",
" IAMName = 'ami-ubuntu-18.04-1.16.2-00-1571834140'",
" IAMName = 'ubuntu/images/hvm-ssd/ubuntu-bionic-18.04-amd64-server-*'",
" elif distribution == 'Debian9':",
" IAMName = 'debian-stretch-hvm-x86_64-gp2-2020-07-20-58035'",
" IAMName = 'debian-stretch-hvm-x86_64-gp2-*'",
" response = ec2.describe_images(Filters=[{'Name':'name', 'Values':[IAMName]}])",
" AMIId = response['Images'][0]['ImageId']",
" images = response['Images']",
" images.sort(key=creation_date,reverse=True)",
" AMIId = images[0]['ImageId']",
" cfnresponse.send(event, context, cfnresponse.SUCCESS, {'AMIId':AMIId}, 'AMIInfo')",
" except Exception:",
" cfnresponse.send(event, context, cfnresponse.FAILED, {})"