-
Notifications
You must be signed in to change notification settings - Fork 0
/
variables.tf
46 lines (37 loc) · 1017 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
variable "stage" {
type = string
description = "The stage the resources will be deployed for"
}
variable "name" {
type = string
default = "api"
description = "The name for this API"
}
variable "namespace" {
type = string
description = "Organization or company namespace prefix"
}
variable "attributes" {
type = list
default = ["logs"]
description = "Additional attributes (e.g. `eu1`)"
}
variable "tags" {
type = map
default = {}
description = "Additional tags (e.g. map(`BusinessUnit`,`XYZ`)"
}
variable "delimiter" {
type = string
default = "-"
description = "Delimiter to be used between `namespace`, `stage`, `name` and `attributes`"
}
variable "aws_region" {
type = string
description = "The AWS region the api gateway settings apply to"
}
variable "region" {
type = string
default = ""
description = "Custom region name to use to avoid IAM naming conflicts. Defaults to aws_region"
}