-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tf
47 lines (39 loc) · 962 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
variable "owner" {
description = "a tag to apply to supporting resources"
type = "string"
}
variable "environment" {
description = "a tag to apply to supporting resources"
type = "string"
default = "development"
}
variable "app_version" {
description = "Version/path to select when loading lambda code from S3"
type = "string"
default = "0.1.0"
}
variable "bucket" {
description = "Source of lambda code"
type = "string"
}
variable "vpce" {
description = "allowed VPC endpoint for traffic to API GW"
type = string
}
variable "apigw_role" {
description = "pre-created role for apigw, with path"
type = "string"
}
variable "lambda_role" {
description = "pre-created role for lambda, with path"
type = "string"
}
variable "sqs_queue_base_name" {
description = "name of the queue to be used in this sample"
type = "string"
}
variable "stage" {
description = "stage for deployment"
type = "string"
default = "test"
}