-
Notifications
You must be signed in to change notification settings - Fork 8
/
variables.tf
44 lines (37 loc) · 970 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
variable "region" {
description = "Name of AWS region"
default = "us-east-1"
}
variable "topic_name" {
description = "Name for the SNS topic.By default generated by Terraform."
type = string
}
variable "display_name" {
description = "Display Name for the SNS topic."
type = string
default = null
}
variable "kms_master_key_id" {
description = "KMS Key to encrypt SNS topic."
type = string
default = "aws/sns"
}
variable "tags" {
default = {}
description = "tags, which could be used for additional tags"
}
variable "access_type" {
description = "Access type for SNS topic - publish / subscribe / owner."
type = string
default = "owner"
}
variable "protocol" {
description = "Protocol type for SNS Subscription."
type = string
default = null
}
variable "endpoint" {
description = "Protocol endpoint for SNS Subscription."
type = string
default = null
}