Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix inability to use an account Id with leading zeroes #3

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
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