-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvariables.tf
More file actions
55 lines (46 loc) · 1.18 KB
/
variables.tf
File metadata and controls
55 lines (46 loc) · 1.18 KB
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
# VPC Variables
variable "region" {
default = "us-east-1"
description = "AWS Region"
type = string
}
variable "project_name" {
default = "E-commerce"
description = "AWS Region"
type = string
}
variable "vpc-cidr" {
default = "10.0.0.0/16"
description = "VPC CIDR Block"
type = string
}
variable "public-subnet-1-cidr" {
default = "10.0.0.0/24"
description = "Public Subnet 1 CIDR Block"
type = string
}
variable "public-subnet-2-cidr" {
default = "10.0.1.0/24"
description = "Public Subnet 2 CIDR Block"
type = string
}
variable "private-subnet-1-cidr" {
default = "10.0.2.0/24"
description = "Private Subnet 1 CIDR Block"
type = string
}
variable "private-subnet-2-cidr" {
default = "10.0.3.0/24"
description = "Private Subnet 2 CIDR Block"
type = string
}
variable "private-subnet-3-cidr" {
default = "10.0.4.0/24"
description = "Private Subnet 3 CIDR Block"
type = string
}
variable "private-subnet-4-cidr" {
default = "10.0.5.0/24"
description = "Private Subnet 4 CIDR Block"
type = string
}