-
Notifications
You must be signed in to change notification settings - Fork 0
/
vars.tf
67 lines (51 loc) · 1.09 KB
/
vars.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
variable "region" {
# default = "us-west-2"
}
#Variable for VPC module#
variable "env" {
# default = "dev"
}
#Variable for VPC module#
variable "vpc_cidr" {
# default = "10.0.0.0/16"
}
variable "az" {
# default = ["us-west-2a", "us-west-2b", "us-west-2c"]
}
variable "private_subnet" {
# default = ["10.0.1.0/24", "10.0.2.0/24", "10.0.3.0/24"]
}
variable "public_subnet" {
# default = ["10.0.101.0/24", "10.0.102.0/24", "10.0.103.0/24"]
}
variable "enable_nat" {
# default = true
}
variable "single_nat" {
# default = true
}
variable "enable_vpn" {
# default = true
}
variable "tags" {
# default = {
# Terraform = "true",
# environment = "dev"
# }
}
variable "custom_cidr" {
# default = ["14.16.146.125/32","208.184.224.35/32","4.78.246.196/32","12.202.171.37/32","4.16.173.56/32","208.184.224.1/32"]
}
variable "ec2_ami" {
# default = ""
}
variable "ec2_name" {
# default = ""
}
variable "instance_type" {
type = string
default = "t2.micro"
}
variable "key_name" {
default = ""
}