Skip to content

Commit c18ada7

Browse files
committed
adding gitignore; updating module name for iam pwd policy
1 parent 5bc6324 commit c18ada7

File tree

2 files changed

+17
-5
lines changed

2 files changed

+17
-5
lines changed

.gitignore

+10
Original file line numberDiff line numberDiff line change
@@ -508,3 +508,13 @@ $RECYCLE.BIN/
508508
**/sra_staging_manual_upload/*
509509
**/dist-*/*
510510
poetry.lock
511+
512+
# Ignore packages generated by TF
513+
**/aws_sra_examples/terraform/**/lambda/
514+
**.terraform
515+
*.tfstate
516+
*.tfstate.*
517+
*.tfvars*
518+
**./terraform
519+
*.hcl
520+

aws_sra_examples/terraform/common/variables.tf

+7-5
Original file line numberDiff line numberDiff line change
@@ -4,22 +4,24 @@
44
########################################################################
55
variable "control_tower" {
66
description = "AWS Control Tower landing zone deployed/in-use"
7-
default = "true"
7+
default = "false"
88
}
99

1010
variable "governed_regions" {
1111
description = "AWS regions (comma separated) if not using AWS Control Tower (leave set to ct-regions for AWS Control Tower environments)"
12-
default = "ct-regions"
12+
default = "us-west-2,us-west-1,ap-northeast-3,ap-south-1,eu-central-1"
1313
}
1414

1515
variable "security_account_id" {
1616
description = "Security Tooling Account ID"
17-
default = 111111111111
17+
type = string
18+
default = "722491569570"
1819
}
1920

2021
variable "log_archive_account_id" {
2122
description = "Log Archive Account ID"
22-
default = 222222222222
23+
type = string
24+
default = "038514619952"
2325
}
2426

2527
variable "aws_partition" {
@@ -37,4 +39,4 @@ variable "solution_name" {
3739
default = "sra-create-deployment-roles"
3840
description = "Name of the SRA solution"
3941
type = string
40-
}
42+
}

0 commit comments

Comments
 (0)