-
Notifications
You must be signed in to change notification settings - Fork 0
/
variables.tf
38 lines (38 loc) · 1.01 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
variable "region" {
default = "ap-south-1"
}
variable "vpc-fullcidr" {
default = "192.168.0.0/16"
description = "the vpc cdir"
}
variable "Subnet-Public-AzA-CIDR" {
default = "192.168.1.0/24"
description = "the cidr of the 2a-Public Subnet"
}
variable "Subnet-Private-AzA-CIDR" {
default = "192.168.2.0/24"
description = "the cidr of the 2a-Private Subnet"
}
variable "Subnet-Public-AzB-CIDR" {
default = "192.168.3.0/24"
description = "the cidr of the 2b-Public Subnet"
}
variable "Subnet-Private-AzB-CIDR" {
default = "192.168.4.0/24"
description = "the cidr of the 2b-Private Subnet"
}
variable "Subnet-Public-AzC-CIDR" {
default = "192.168.5.0/24"
description = "the cidr of the 2C-Public Subnet"
}
variable "Subnet-Private-AzC-CIDR" {
default = "192.168.6.0/24"
description = "the cidr of the 2C-Private Subnet"
}
variable "key_name" {
default = "deltakp"
description = "the ssh key to use in the EC2 machines"
}
variable "route53_public_dns_name" {
default="www"
}