forked from appzen-oss/terraform-aws-env-base
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tf
73 lines (59 loc) · 1.46 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
61
62
63
64
65
66
67
68
69
70
71
72
73
//
// Variables specific to module label
//
variable "availability_zones" {
description = "List of AZ letters to use"
type = "list"
default = ["a", "b", "c"]
}
variable "aws_region" {
description = "AWS region to manage resources in"
}
variable "environment" {
description = "Environment (ex: `dev`, `qa`, `stage`, `prod`). (Second or top level namespace. Depending on namespacing options)"
}
variable "organization" {
description = "Organization namespace"
}
variable "account_name" {
description = "Name of member account. Format: namespace-account. Part after - is used for DNS subdomain"
}
variable "component" {
description = "Tag: Component"
default = "vpc"
}
variable "product" {
description = "Tag: Product"
default = "shared"
}
variable "name" {
description = "Tag: Name"
default = "vpc"
}
variable "service" {
description = "Tag: Service"
default = "vpc"
}
variable "team" {
description = "Tag: Team"
default = "devops"
}
variable "tags" {
type = "map"
default = {}
description = "Additional tags (e.g. map(`Cluster`,`XYZ`)"
}
variable "top_level_domain" {
description = "Top level DNS domain. Account subdomain will be added to this"
}
variable "vpc_cidr" {
description = "CIDR block for VPC"
type = "string"
}
variable "vpc_name" {
description = "Name of VPC"
}
variable "private_acl_cidr" {
description = "Private Subnet acl ingress CIDR"
default = "10.0.0.0/8"
}