-
Notifications
You must be signed in to change notification settings - Fork 4
/
variable.tf
92 lines (90 loc) · 2.14 KB
/
variable.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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
variable "environment" {
description = "indicates name of our environment. possible values dev,cit,sit,uat,pprod,prod,n"
default = "dev"
}
variable "cost_centre" {
description = "A part of an organization to which costs may be charged.e.g. finance/it/hr/wholesale/retail/investment etc..."
default = "na"
}
variable "vpc_cidr_block" {}
variable "vpc_instance_tenancy" {
default = "default"
description = "possible values default or dedicated"
}
variable "assign_ipv6_cidr_block" {
default = "false"
}
variable "region_id" {
default = "euw1"
}
variable "region" {
description = "region in which resource is created."
default = "eu-west-1"
}
variable "version_id" {
description = "version of this component.everytime when we are updating this component we need to increment it."
default = "1"
}
variable "build_date" {
description = "date on which this component built/modified. format ddmmyyyy e.g. 27122017"
default = ""
}
variable "vpc_seq_id" {
default = "001"
}
variable "public_subnet_cidr_list" {
description = "all public facing resources e.g. ALB will reside in this subnet"
type = list
default =[]
}
variable "private_app_subnet_list" {
description = "all backend micro services ECS/K8s etc will receive request from this."
type = list
default =[]
}
variable "private_db_subnet_list" {
description = "all noSQL, RDS etc will reside here"
type = list
default =[]
}
variable "az_list" {
type = list
default = ["eu-west-1a", "eu-west-1b", "eu-west-1c"]
}
variable "seq_id" {}
variable "tag_for_vpc" {
type = map
default = {}
}
variable "tag_for_public_subnet" {
type = map
default = {}
}
variable "tag_for_privApp_subnet" {
type = map
default = {}
}
variable "tag_for_privDb_subnet" {
type = map
default = {}
}
variable "tag_for_internent_gateway" {
type = map
default = {}
}
variable "tag_for_nat_gateway" {
type = map
default = {}
}
variable "tag_for_vpn_gateway" {
type = map
default = {}
}
variable "common_tags" {
type = map
default = {}
}
variable "tag_for_route_table" {
type = map
default = {}
}