From 81aff1b6b3937934ee2c91b75386770c15b2c446 Mon Sep 17 00:00:00 2001 From: Scottpedia Date: Fri, 1 Jan 2021 22:51:15 -0500 Subject: [PATCH] Minor fixes to the template: - Correct the wildcard search pattern for AmazonLinux2 AMI names. - Correct the AmazonLinux2 installation link. - Done testing of newly-added OS(s). --- aws/cloudformation-template-ipsec | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/aws/cloudformation-template-ipsec b/aws/cloudformation-template-ipsec index d7149e4..3c5822b 100644 --- a/aws/cloudformation-template-ipsec +++ b/aws/cloudformation-template-ipsec @@ -28,7 +28,7 @@ }, "AmazonLinux2": { "HelperInstallationCommands": "export PATH=\"$PATH:/opt/aws/bin\"\n", - "InstallationLinks": "https://bit.ly/vpnsetup-amzn" + "InstallationLinks": "https://git.io/vpnsetup-amzn" } } }, @@ -665,7 +665,7 @@ " elif distribution == 'CentOS8':", " AMIName = 'CentOS 8.3.2011 x86_64'", " elif distribution == 'AmazonLinux2':", - " AMIName = 'amzn-ami-hvm-*'", + " AMIName = 'amzn2-ami-hvm-*'", " response = ec2.describe_images(Filters=[{'Name':'name', 'Values':[AMIName]}], Owners=['099720109477', '379101102735', '125523088429', 'amazon'])", " images = response['Images']", " images.sort(key=creation_date,reverse=True)",