diff --git a/terraform/environments/ppud/instances.tf b/terraform/environments/ppud/instances.tf index b09494879e1..7fccc3f0fc0 100644 --- a/terraform/environments/ppud/instances.tf +++ b/terraform/environments/ppud/instances.tf @@ -273,7 +273,7 @@ ebs_block_device { # Test Web Server -resource "aws_instance" "TestWebServer1" { +resource "aws_instance" "TestWebServer3" { count = local.is-development == true ? 1 : 0 ami = "ami-070c9a4ee0e5d83d5" instance_type = "m5.large" @@ -282,30 +282,13 @@ resource "aws_instance" "TestWebServer1" { vpc_security_group_ids = [aws_security_group.PPUD-WEB-Portal.id] subnet_id = data.aws_subnet.private_subnets_c.id -root_block_device { - volume_size = 100 - volume_type = "gp3" - } - -ebs_block_device { - device_name = "/dev/sdb" - volume_type = "gp3" - volume_size = 70 - } - -ebs_block_device { - device_name = "/dev/sdc" - volume_type = "gp3" - volume_size = 50 - } - metadata_options { http_tokens = "required" http_endpoint = "enabled" } tags = { - Name = "TestWebServer1" + Name = "TestWebServer3" patch_group = "dev_win_patch" backup = false }