From 772df7ff4be3fdce423169ef5e1093ca7ecea689 Mon Sep 17 00:00:00 2001 From: Cesar Rodriguez Date: Wed, 26 Aug 2020 23:39:56 -0400 Subject: [PATCH] adds vpc sgs to good test --- .automation/test/terraform/good/terraform_good_1.tf | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.automation/test/terraform/good/terraform_good_1.tf b/.automation/test/terraform/good/terraform_good_1.tf index 59d24f7e..330a28bf 100644 --- a/.automation/test/terraform/good/terraform_good_1.tf +++ b/.automation/test/terraform/good/terraform_good_1.tf @@ -3,6 +3,8 @@ resource "aws_instance" "good" { instance_type = "t2.small" associate_public_ip_address = false + vpc_security_group_ids = ["sg-12345678901234567"] + ebs_block_device { encrypted = true }