Skip to content

Commit

Permalink
fix: mark var.member_accounts required (#272)
Browse files Browse the repository at this point in the history
  • Loading branch information
nozaq authored Feb 25, 2022
1 parent 3dc1be8 commit 8612941
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion examples/organization/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ When it sets to `master`, this module configure the account to be ready to gathe

## Master Account

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

The following shows a sample usage.

Expand Down
14 changes: 7 additions & 7 deletions examples/organization/master/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -3,17 +3,17 @@ variable "audit_s3_bucket_name" {
type = string
}

variable "region" {
description = "The AWS region in which global resources are set up."
type = string
default = "us-east-1"
}

variable "member_accounts" {
description = "A list of AWS account IDs."
type = list(object({
account_id = string
email = string
}))
default = []
}

variable "region" {
description = "The AWS region in which global resources are set up."
type = string
default = "us-east-1"
}

0 comments on commit 8612941

Please sign in to comment.