Skip to content

Commit

Permalink
Bump production portscan instances from t3.small to t3.medium
Browse files Browse the repository at this point in the history
We are moving to a larger instance type for the portscan instances in
production environments.
  • Loading branch information
mcdonnnj committed Jun 29, 2023
1 parent 2a209c8 commit 03fc140
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion terraform/cyhy_nmap_ec2.tf
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ data "aws_ami" "nmap" {

resource "aws_instance" "cyhy_nmap" {
ami = data.aws_ami.nmap.id
instance_type = local.production_workspace ? "t3.small" : "t3.small"
instance_type = local.production_workspace ? "t3.medium" : "t3.small"
count = var.nmap_instance_count

availability_zone = "${var.aws_region}${var.aws_availability_zone}"
Expand Down

0 comments on commit 03fc140

Please sign in to comment.