From 1ea4be29028525b532f80b546b222e46aef1fa24 Mon Sep 17 00:00:00 2001 From: badra001 Date: Thu, 9 Nov 2023 12:26:29 -0500 Subject: [PATCH] fix --- iam-general-policies/README.md | 2 +- iam-general-policies/variables.tf | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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 = [] }