Skip to content

Commit 23d3253

Browse files
committed
made changes to aws.tf file to prevent 'The architecture x86_64 of the specified instance type does not match the architecture arm64 of the specified AMI'
1 parent abb3372 commit 23d3253

1 file changed

Lines changed: 5 additions & 0 deletions

File tree

quick-start/terraform/aws.tf

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,11 @@ data "aws_ami" "ubuntu" {
2525
values = ["hvm"]
2626
}
2727

28+
filter {
29+
name = "architecture"
30+
values = ["x86_64"]
31+
}
32+
2833
owners = ["888995627335"] # Canonical
2934
}
3035

0 commit comments

Comments
 (0)