-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariable.tf
39 lines (33 loc) · 889 Bytes
/
variable.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
variable "region" {
default = "us-east-1"
description = "This is the region where the resources will be deployed"
type = string
}
variable "vpc-cidr" {
default = "10.14.0.0/16"
description = "VPC CIDR Block"
type = string
}
variable "public-subnet-1-cidr" {
default = "10.14.1.0/24"
description = "Public Subnet 1 CIDR Block"
type = string
}
variable "public-subnet-2-cidr" {
default = "10.14.2.0/24"
description = "Public Subnet 2 CIDR Block"
type = string
}
variable "private-subnet-1-cidr" {
default = "10.14.3.0/24"
description = "Private Subnet 1 CIDR Block"
type = string
}
variable "private-subnet-2-cidr" {
default = "10.14.4.0/24"
description = "Private Subnet 2 CIDR Block"
type = string
}
variable "token" {
default = "your nirmata profile token"
}