Skip to content

Commit

Permalink
Merge pull request #248 from cisagov/improvement/use-graviton-for-nessus
Browse files Browse the repository at this point in the history
Run Nessus on Graviton instances
  • Loading branch information
jsf9k authored Aug 26, 2024
2 parents c7b6e24 + 57e4e5b commit dd886b7
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions nessus_ec2.tf
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,13 @@ data "aws_ami" "nessus" {

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

filter {
name = "name"
values = [
"nessus-hvm-*-x86_64-ebs"
"nessus-hvm-*-arm64-ebs"
]
}

Expand Down Expand Up @@ -55,7 +55,7 @@ resource "aws_instance" "nessus" {
ami = data.aws_ami.nessus.id
associate_public_ip_address = true
iam_instance_profile = aws_iam_instance_profile.nessus.name
instance_type = "m5.large"
instance_type = "m7g.large"
# AWS Instance Meta-Data Service (IMDS) options
metadata_options {
# Enable IMDS (this is the default value)
Expand Down

0 comments on commit dd886b7

Please sign in to comment.