-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tf
62 lines (45 loc) · 949 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
57
58
59
60
61
62
variable "vpc-cidr" {
default = ""
type = string
description = "CIDR block details for main VPC"
}
variable "pusub-1" {
default = ""
type = string
description = "public subnet 1 CIDR"
}
variable "prisub-1" {
default = ""
type = string
description = "private subnet 1 CIDR"
}
variable "prisub-2" {
default = ""
type = string
description = "private subnet 2 CIDR"
}
variable "prisub-3" {
default = ""
type = string
description = "private subnet 3 CIDR"
}
variable "pusub-2" {
default = ""
type = string
description = "public subnet 2 CIDR"
}
variable "pusub-3" {
default = ""
type = string
description = "public subnet 3 CIDR"
}
variable "internet" {
default = ""
type = string
description = "Internet IP address"
}
variable "ami" {
default = ""
type = string
description = "ami"
}