-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathvariables.tf
80 lines (66 loc) · 1.69 KB
/
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
variable "account_id" {
description = "AWS Account ID"
type = string
}
variable "region" {
description = "AWS Region"
type = string
default = "us-east-1"
}
variable "default_tags" {
description = "A map of tags to assign to all resources."
type = map(string)
default = {}
}
variable "resource_prefix" {
description = "A prefix to add to all resource names."
type = string
default = ""
}
variable "fifo" {
description = "Boolean designating a FIFO topic and queue. If not set, it defaults to false making it standard."
type = bool
default = false
}
variable "authorization" {
description = "Authorization type for API Gateway method"
type = string
default = "NONE"
}
variable "path_integration" {
description = "Path for API Gateway integration"
type = string
default = "sns"
}
variable "path_method" {
description = "Path for API Gateway method"
type = string
default = "POST"
}
variable "stage_name" {
description = "Stage name for API Gateway deployment"
type = string
default = "prod"
}
variable "topic" {
description = "Topic name for API Gateway integration"
type = string
}
variable "queue" {
description = "Queue name for API Gateway integration"
type = string
}
variable "api_name" {
description = "API name for API Gateway integration"
type = string
}
variable "api_description" {
description = "API description for API Gateway integration"
type = string
default = "API Gateway integration for SNS"
}
variable "filter_policy" {
description = "Filter Policy"
type = map(list(string))
default = {}
}