Skip to content

Commit

Permalink
arm64/ubuntu
Browse files Browse the repository at this point in the history
Signed-off-by: Manuel Weber <[email protected]>
  • Loading branch information
mm-weber committed Jun 4, 2024
1 parent 64bfcbf commit d9c2f8f
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions aws/ec2-instances/amis.tf
Original file line number Diff line number Diff line change
Expand Up @@ -249,6 +249,27 @@ data "aws_ami" "ubuntu2204_cis" {
owners = ["679593333241"]
}

data "aws_ami" "ubuntu2204_cis_arm64" {
most_recent = true

filter {
name = "name"
values = ["CIS Ubuntu Linux 22.04*"]
}

filter {
name = "architecture"
values = ["arm64"]
}

filter {
name = "virtualization-type"
values = ["hvm"]
}

owners = ["679593333241"]
}

data "aws_ami" "debian10" {
most_recent = true

Expand Down

0 comments on commit d9c2f8f

Please sign in to comment.