Skip to content

Commit fc1c8f4

Browse files
rpdelaneyRyan Delaney
authored and
Ryan Delaney
committed
Fix tags var type, list->map
1 parent d00d49e commit fc1c8f4

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ No modules.
6464
| <a name="input_caa_records"></a> [caa\_records](#input\_caa\_records) | Add CAA records to route53. | `list(string)` | `[]` | no |
6565
| <a name="input_domain_name"></a> [domain\_name](#input\_domain\_name) | Domain name to associate with the ACM certificate. | `string` | n/a | yes |
6666
| <a name="input_environment"></a> [environment](#input\_environment) | Environment tag. e.g. prod | `string` | n/a | yes |
67-
| <a name="input_tags"></a> [tags](#input\_tags) | Tags to be attached to the ACM certificate. | `list(string)` | `[]` | no |
67+
| <a name="input_tags"></a> [tags](#input\_tags) | Tags to be attached to the ACM certificate. | `map(string)` | `{}` | no |
6868
| <a name="input_zone_name"></a> [zone\_name](#input\_zone\_name) | The Route53 zone name for which the certificate should be verified and issued. | `string` | n/a | yes |
6969

7070
## Outputs

variables.tf

+2-2
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,6 @@ variable "caa_records" {
2727

2828
variable "tags" {
2929
description = "Tags to be attached to the ACM certificate."
30-
type = list(string)
31-
default = []
30+
type = map(string)
31+
default = {}
3232
}

0 commit comments

Comments
 (0)