diff --git a/.github/pull_request_template.md b/.github/pull_request_template.md new file mode 100644 index 00000000..bd3b4675 --- /dev/null +++ b/.github/pull_request_template.md @@ -0,0 +1,5 @@ +#### Overview of Changes +- What was changed + +#### Testing +Was this tested with different Terraform versions? diff --git a/scenarios/cloud_breach_s3/terraform/data_sources.tf b/scenarios/cloud_breach_s3/terraform/data_sources.tf index e06e5681..0c69f6f7 100644 --- a/scenarios/cloud_breach_s3/terraform/data_sources.tf +++ b/scenarios/cloud_breach_s3/terraform/data_sources.tf @@ -1,8 +1,2 @@ #AWS Account Id -data "aws_caller_identity" "aws-account-id" { - -} -#S3 Full Access Policy -data "aws_iam_policy" "s3-full-access" { - arn = "arn:aws:iam::aws:policy/AmazonS3FullAccess" -} \ No newline at end of file +data "aws_caller_identity" "aws-account-id" {} diff --git a/scenarios/cloud_breach_s3/terraform/ec2.tf b/scenarios/cloud_breach_s3/terraform/ec2.tf index b064fa52..b8dfacf5 100644 --- a/scenarios/cloud_breach_s3/terraform/ec2.tf +++ b/scenarios/cloud_breach_s3/terraform/ec2.tf @@ -1,122 +1,129 @@ #IAM Role resource "aws_iam_role" "cg-banking-WAF-Role" { name = "cg-banking-WAF-Role-${var.cgid}" - assume_role_policy = <