Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions modules/organizations_member/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@
variable "member_config" {
description = <<EOF
Specifies the member account configuration:
`account_id` - The 13 digit ID number of the member account. Example: `123456789012`.
`account_id` - The 12 digit ID number of the member account. Example: `123456789012`.
`email` - Email address to send the invite for member account. Defaults to `null`.
`invite` - Whether to invite the account to SecurityHub as a member. Defaults to `false`. To detect if an invitation needs to be (re-)sent, the Terraform state value is true based on a `member_status` of `Disabled` | `Enabled` | `Invited` | EmailVerificationInProgress.
EOF
type = list(object({
account_id = number
account_id = string
email = string
invite = bool
}))
Expand Down