Skip to content

Commit

Permalink
Merge pull request #1387 from gruntwork-io/fix-cicd-tests
Browse files Browse the repository at this point in the history
Amazon Linux AMIs search fixes
  • Loading branch information
denis256 committed Jan 16, 2024
2 parents 74d9df0 + 5978aa8 commit 7556978
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/aws/ami.go
Expand Up @@ -274,7 +274,7 @@ func GetAmazonLinuxAmi(t testing.TestingT, region string) string {
// GetAmazonLinuxAmiE returns an Amazon Linux AMI HVM, SSD Volume Type public AMI for the given region.
func GetAmazonLinuxAmiE(t testing.TestingT, region string) (string, error) {
filters := map[string][]string{
"name": {"*amzn-ami-hvm-*-x86_64*"},
"name": {"*amzn2-ami-hvm-*-x86_64*"},
"virtualization-type": {"hvm"},
"architecture": {"x86_64"},
"root-device-type": {"ebs"},
Expand Down

0 comments on commit 7556978

Please sign in to comment.