Skip to content

Commit 420f66b

Browse files
committed
Update terraform version
1 parent 93b486d commit 420f66b

2 files changed

Lines changed: 8 additions & 17 deletions

File tree

README.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -48,9 +48,8 @@ No resources.
4848

4949
| Name | Description | Type | Default | Required |
5050
|------|-------------|------|---------|:--------:|
51-
| <a name="input_name_prefix"></a> [name\_prefix](#input\_name\_prefix) | Name prefix for resources on AWS | `string` | n/a | yes |
52-
| <a name="input_region"></a> [region](#input\_region) | AWS Region the infrastructure is hosted in | `string` | n/a | yes |
53-
| <a name="input_tags"></a> [tags](#input\_tags) | Resource tags | `map(string)` | `{}` | no |
51+
| <a name="input_additional_tags"></a> [additional\_tags](#input\_additional\_tags) | (Optional) A map of tags to assign to all the resources. If configured with a provider default\_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level. | `map(string)` | `{}` | no |
52+
| <a name="input_name_prefix"></a> [name\_prefix](#input\_name\_prefix) | (Required) The prefix to use for naming resources created in this module. | `string` | n/a | yes |
5453

5554
## Outputs
5655

variables.tf

Lines changed: 6 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,13 @@
1-
#------------------------------------------------------------------------------
2-
# Misc
3-
#------------------------------------------------------------------------------
1+
###############
2+
# Miscellaneous
3+
###############
44
variable "name_prefix" {
5+
description = "(Required) The prefix to use for naming resources created in this module."
56
type = string
6-
description = "Name prefix for resources on AWS"
77
}
88

9-
variable "tags" {
9+
variable "additional_tags" {
10+
description = "(Optional) A map of tags to assign to all the resources. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level."
1011
type = map(string)
1112
default = {}
12-
description = "Resource tags"
13-
}
14-
15-
#------------------------------------------------------------------------------
16-
# AWS REGION
17-
#------------------------------------------------------------------------------
18-
variable "region" {
19-
type = string
20-
description = "AWS Region the infrastructure is hosted in"
2113
}

0 commit comments

Comments
 (0)