Skip to content

Commit

Permalink
update example
Browse files Browse the repository at this point in the history
  • Loading branch information
wellsiau-aws committed Oct 9, 2024
1 parent 7883d23 commit 3bc481c
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions docs/resources/controltower_landing_zone.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ Creates a new landing zone. Please make sure you have completed the pre-requisit
```terraform
resource awscc_controltower_landing_zone "this" {
manifest = jsonencode({
"governedRegions": ["us-west-2","us-east-1"],
"governedRegions": toset(["us-west-2","us-east-1"]),
"organizationStructure": {
"security": {
"name": "Core"
Expand All @@ -28,10 +28,10 @@ resource awscc_controltower_landing_zone "this" {
"accountId": "YOUR_LOG_ARCHIVE_ACCOUNT_ID",
"configurations": {
"loggingBucket": {
"retentionDays": 60
"retentionDays": "60"
},
"accessLoggingBucket": {
"retentionDays": 60
"retentionDays": "60"
},
},
"enabled": true
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
resource awscc_controltower_landing_zone "this" {
manifest = jsonencode({
"governedRegions": ["us-west-2","us-east-1"],
"governedRegions": toset(["us-west-2","us-east-1"]),
"organizationStructure": {
"security": {
"name": "Core"
Expand All @@ -13,10 +13,10 @@ resource awscc_controltower_landing_zone "this" {
"accountId": "YOUR_LOG_ARCHIVE_ACCOUNT_ID",
"configurations": {
"loggingBucket": {
"retentionDays": 60
"retentionDays": "60"
},
"accessLoggingBucket": {
"retentionDays": 60
"retentionDays": "60"
},
},
"enabled": true
Expand Down

0 comments on commit 3bc481c

Please sign in to comment.