diff --git a/iam-general-policies/README.md b/iam-general-policies/README.md index 96d2384..3bfedce 100644 --- a/iam-general-policies/README.md +++ b/iam-general-policies/README.md @@ -290,7 +290,7 @@ No modules. |------|-------------|------|---------|:--------:| | [account\_alias](#input\_account\_alias) | AWS Account Alias | `string` | `""` | no | | [account\_id](#input\_account\_id) | AWS Account ID (default will pull from current user) | `string` | `""` | no | -| [cloudforms\_kms\_key\_arns](#input\_cloudforms\_kms\_key\_arns) | List of additional KMS Key ARNs for use by CloudForms policy (recommended to get alias/aws/ebs in each region) | `list` | `[]` | no | +| [cloudforms\_kms\_key\_arns](#input\_cloudforms\_kms\_key\_arns) | List of additional KMS Key ARNs for use by CloudForms policy (recommended to get alias/aws/ebs in each region) | `list(string)` | `[]` | no | | [component\_tags](#input\_component\_tags) | Additional tags for Components (policy) | `map(map(string))` |
{
"policy": {}
}
| no | | [ipr\_additional\_cidr\_blocks](#input\_ipr\_additional\_cidr\_blocks) | Additional CIDR blocks for IP based API restrictions (default: none) | `list(string)` | `[]` | no | | [ipr\_base\_cidr\_blocks](#input\_ipr\_base\_cidr\_blocks) | Base CIDR blocks for IP based API restrictions (default: census class B network, IPv6; public IPs only) | `list(string)` |
[
"148.129.0.0/16",
"2610:20:2000::0/38"
]
| no | diff --git a/iam-general-policies/variables.tf b/iam-general-policies/variables.tf index 3a060ca..80ea1e2 100644 --- a/iam-general-policies/variables.tf +++ b/iam-general-policies/variables.tf @@ -71,6 +71,6 @@ variable "regions" { variable "cloudforms_kms_key_arns" { description = "List of additional KMS Key ARNs for use by CloudForms policy (recommended to get alias/aws/ebs in each region)" - value = list(string) + type = list(string) default = [] }