Add the sorting function
This commit is contained in:
parent
c05f29007a
commit
40cb525803
1 changed files with 9 additions and 4 deletions
|
@ -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, {})"
|
||||
|
|
Loading…
Add table
Reference in a new issue