-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathvariables.tf
56 lines (46 loc) · 905 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
44
45
46
47
48
49
50
51
52
53
54
55
56
variable "region" {
default = "ap-south-1"
}
variable "vpc_cidir" {
default = "192.178.0.0/16"
}
variable "vpc_name" {
type = "string"
default = "CITY_VPC"
}
variable "public_subnet_cidrs" {
type = "list"
default = ["192.178.0.0/25", "192.178.0.128/25"]
}
variable "azs" {
type = "list"
default = ["ap-south-1a", "ap-south-1b"]
}
variable "private_subnet_cidrs" {
type = "list"
default = ["192.178.1.0/25", "192.178.1.128/25"]
}
variable "pubic_subnet_name" {
default = "CITY_PUBLIC_SUBNET"
}
variable "private_subnet_name" {
default = "CITY_PRIVATE_SUBNET"
}
variable "igw_name" {
default = "CITY_IGW"
}
variable "public_rt_name" {
default = "CITY_PUBLIC"
}
variable "cidr" {
default = "0.0.0.0/0"
}
variable "private_rt_name" {
default = "CITY_PRIVATE"
}
variable "nat_name" {
default = "CITY_NAT"
}
variable "eip_name" {
default = "CITY_EIP"
}