-
Notifications
You must be signed in to change notification settings - Fork 42
/
Copy pathvariables.tf
35 lines (29 loc) · 835 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
variable "additional_tags" {
default = {}
description = "The tags to apply to resources created by this module"
type = map(string)
}
variable "display_name" {
type = string
description = "Name shown in confirmation emails"
default = "tf_sns_email"
}
variable "email_address" {
type = string
description = "Email address to send notifications to"
}
variable "owner" {
type = string
description = "Sets the owner tag on the CloudFormation stack"
default = "tf_sns_email"
}
variable "protocol" {
default = "email"
description = "SNS Protocol to use. email or email-json"
type = string
}
variable "stack_name" {
type = string
description = "Cloudformation stack name that wraps the SNS topic. Must be unique."
default = "tf-sns-email"
}