forked from Krishnadev3699/spinnaker
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvariables.tf
More file actions
36 lines (33 loc) · 733 Bytes
/
Copy pathvariables.tf
File metadata and controls
36 lines (33 loc) · 733 Bytes
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
variable "region" {
default = "us-east-1"
}
variable "environment" {
default = "Development"
}
variable "vpc_cidr" {
description = "VPC cidr block"
}
variable "public_subnet_1_cidr" {
description = "Public Subnet 1 cidr block"
}
variable "public_subnet_2_cidr" {
description = "Public Subnet 2 cidr block"
}
variable "public_subnet_3_cidr" {
description = "Public Subnet 3 cidr block"
}
variable "private_subnet_1_cidr" {
description = "Private Subnet 1 cidr block"
}
variable "private_subnet_2_cidr" {
description = "Private Subnet 2 cidr block"
}
variable "private_subnet_3_cidr" {
description = "Private Subnet 3 cidr block"
}
variable "instance_type" {
}
variable "instance_ami" {
}
variable "keyname" {
}