Skip to content

Commit 8612941

Browse files
authored
fix: mark var.member_accounts required (#272)
1 parent 3dc1be8 commit 8612941

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

examples/organization/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ When it sets to `master`, this module configure the account to be ready to gathe
77

88
## Master Account
99

10-
In the master account configuration, you need to set `account_type` to `master` and specify member account information in `member accounts`.
10+
In the master account configuration, you need to set `account_type` to `master` and specify member account information in `member_accounts`.
1111

1212
The following shows a sample usage.
1313

examples/organization/master/variables.tf

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -3,17 +3,17 @@ variable "audit_s3_bucket_name" {
33
type = string
44
}
55

6-
variable "region" {
7-
description = "The AWS region in which global resources are set up."
8-
type = string
9-
default = "us-east-1"
10-
}
11-
126
variable "member_accounts" {
137
description = "A list of AWS account IDs."
148
type = list(object({
159
account_id = string
1610
email = string
1711
}))
18-
default = []
1912
}
13+
14+
variable "region" {
15+
description = "The AWS region in which global resources are set up."
16+
type = string
17+
default = "us-east-1"
18+
}
19+

0 commit comments

Comments
 (0)