diff --git a/config/README.md b/config/README.md index da752da..fd5022d 100644 --- a/config/README.md +++ b/config/README.md @@ -81,6 +81,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 | +| [component\_tags](#input\_component\_tags) | Additional tags for Components (s3, kms) | `map(map(string))` |
{
"kms": {},
"s3": {}
}
| no | | [enable\_config\_rules\_standard](#input\_enable\_config\_rules\_standard) | Flag to enable\|disable the standard set of config rules | `bool` | `true` | no | | [enable\_config\_rules\_stopped](#input\_enable\_config\_rules\_stopped) | Flag to enable\|disable EC2 stopped config rules | `bool` | `false` | no | | [name](#input\_name) | Config resource name prefix used for all resources | `string` | `""` | no | diff --git a/config/variables.tf b/config/variables.tf index c4aafea..5e288ab 100644 --- a/config/variables.tf +++ b/config/variables.tf @@ -20,3 +20,9 @@ variable "enable_config_rules_stopped" { type = bool default = false } + +variable "component_tags" { + description = "Additional tags for Components (s3, kms)" + type = map(map(string)) + default = { "s3" = {}, "kms" = {}, } +}