-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tf
54 lines (42 loc) · 1019 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
43
44
45
46
47
48
49
50
51
52
53
54
variable "configure_spf" {
type = bool
default = true
description = <<EOS
Whether to configure SPF record for the domain.
EOS
}
variable "default_tags" {
type = map(string)
default = {}
description = <<EOS
Map of tags assigned to all AWS resources created by this module.
EOS
}
variable "domain_name" {
type = string
description = <<EOS
Domain name which shall be used as sender domain by SES.
EOS
}
variable "route53_zone" {
type = object({
zone_id = string
})
description = <<EOS
The Route53 hosted zone to which all DNS records shall be added.
The domain name specified as `var.domain_name` must be within the Route53 hosted zone specified by this parameter.
EOS
}
variable "sns_topic_name" {
type = string
description = <<EOS
Name of SNS topic.
EOS
}
variable "sns_topic_tags" {
type = map(string)
default = {}
description = <<EOS
Map of tags assigned to the SNS topic created by this module. Tags in this map will override tags in `var.default_tags`.
EOS
}