-
Notifications
You must be signed in to change notification settings - Fork 1
/
variables.tf
42 lines (33 loc) · 960 Bytes
/
variables.tf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
variable "default_tags" {
type = map(string)
default = {}
description = <<EOS
Map of tags assigned to all AWS resources created by this module.
EOS
}
variable "domain_names_to_zone_ids" {
type = map(string)
description = <<EOS
Map of domain names (incl. `var.primary_domain_name`) to Route53 hosted zone IDs.
EOS
}
variable "global_acm_certificate_tags" {
type = map(string)
default = {}
description = <<EOS
Map of tags assigned to the global ACM certificate created by this module. Tags in this map will override tags in `var.default_tags`.
EOS
}
variable "primary_domain_name" {
type = string
description = <<EOS
A domain name for which the certificate should be issued.
EOS
}
variable "regional_acm_certificate_tags" {
type = map(string)
default = {}
description = <<EOS
Map of tags assigned to the regional ACM certificate created by this module. Tags in this map will override tags in `var.default_tags`.
EOS
}