-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathvariables.tf
More file actions
48 lines (40 loc) · 935 Bytes
/
variables.tf
File metadata and controls
48 lines (40 loc) · 935 Bytes
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 "terraform_state" {
description = "Terraform backend state setup for S3"
type = map(string)
default = {}
}
variable "region" {
description = "AWS region"
type = string
default = "eu-west-1"
}
variable "namespace" {
description = "Namespace"
type = string
default = ""
}
variable "name" {
description = "Name (e.g. project name)"
type = string
default = ""
}
variable "stage" {
description = "Stage (e.g. environment)"
type = string
default = ""
}
variable "attributes" {
description = "Additional attributes (e.g. `policy` or `role`)"
type = list(string)
default = []
}
variable "delimiter" {
description = "Delimiter to be used between `name`, `namespace`, `environment`, etc."
type = string
default = "-"
}
variable "tags" {
description = "Tags"
type = map(string)
default = {}
}