-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathvariables.tf
66 lines (55 loc) · 1.32 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
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
variable "vpc_cidr" {
description = "CIDR block of the VPC"
type = string
}
variable "vpc_name" {
description = "Name of the VPC"
type = string
default = "MyVPC"
}
variable "public_subnet_cidr" {
description = "CIDR block of the public subnet"
type = string
}
variable "public_subnet_az" {
description = "Availability Zone for the public subnet"
type = string
}
variable "public_subnet_name" {
description = "Name of the VPC public subnet"
type = string
default = "Public Subnet"
}
variable "private_subnet_cidr" {
description = "CIDR block of private subnet"
type = string
}
variable "private_subnet_name" {
description = "Name of the private subnet"
type = string
default = "Private Subnet"
}
variable "private_subnet_az" {
description = "Availability Zone for the private subnet"
type = string
}
variable "igw_name" {
description = "Name of the internet gateway"
type = string
default = "Internet Gateway"
}
variable "nat_gw_name" {
description = "Name of the NAT gateway"
type = string
default = "NAT Gateway"
}
variable "public_rt_name" {
description = "Name of the public route table"
type = string
default = "Public Route Table"
}
variable "private_rt_name" {
description = "Name of the private route table"
type = string
default = "Private Route Table"
}