forked from YouLend/terraform-aws-vpc-peering-multi-account
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tf
44 lines (35 loc) · 967 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
variable "enabled" {
default = true
description = "Set to false to prevent the module from creating or accessing any resources"
}
variable "namespace" {
description = "Namespace (e.g. `eg` or `cp`)"
type = string
}
variable "stage" {
description = "Stage (e.g. `prod`, `dev`, `staging`)"
type = string
}
variable "name" {
description = "Name (e.g. `app` or `cluster`)"
type = string
}
variable "delimiter" {
type = string
default = "-"
description = "Delimiter to be used between `namespace`, `stage`, `name`, and `attributes`"
}
variable "attributes" {
type = list(string)
default = []
description = "Additional attributes (e.g. `a` or `b`)"
}
variable "tags" {
type = map(string)
default = {}
description = "Additional tags (e.g. `{\"BusinessUnit\" = \"XYZ\"`)"
}
variable "auto_accept" {
default = true
description = "Automatically accept the peering"
}