-
Notifications
You must be signed in to change notification settings - Fork 1
/
variables.tf
60 lines (56 loc) · 1.2 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
variable "context" {
type = object({
attributes = list(string)
dns_namespace = string
environment = string
instance = string
instance_short = string
namespace = string
region = string
region_short = string
role = string
role_short = string
project = string
tags = map(string)
})
description = "Shared Context from Ben's terraform-null-context"
}
variable "budget_monthly_limit" {
type = string
description = ""
}
variable "budget_alert_emails" {
type = set(string)
description = ""
}
variable "iam_alias_postfix" {
type = string
description = ""
}
variable "network" {
type = object({
cidr = string
enable_nat = bool
one_nat = bool
enable_private = bool
subnets = list(object({
az = string
public = string
private = string
}))
})
default = {
cidr = "0.0.0.0/0"
enable_nat = false
one_nat = true
enable_private = false
subnets = [
{
az = "us-east-1a"
public = "0.0.0.0/0"
private = ""
}
]
}
description = ""
}