-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathvariables.tf
38 lines (32 loc) · 915 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
variable "create" {
description = "Whether to create all the resources"
type = bool
default = true
}
variable "create_sns_topic" {
description = "Whether to create new SNS topic"
type = bool
default = true
}
variable "pagerduty_endpoint" {
description = "The PagerDuty HTTPS endpoint where SNS notifications will be sent to"
type = string
}
variable "sns_topic_name" {
description = "The name of SNS topic to create or reference"
type = string
}
variable "display_name" {
description = "The display name for the SNS topic"
type = string
default = ""
}
variable "kms_master_key_id" {
description = "The ID of an AWS-managed customer master key (CMK) for Amazon SNS or a custom CMK"
default = ""
}
variable "tags" {
description = "A map of tags to add to the sns_topic resource"
type = map(string)
default = {}
}