-
Notifications
You must be signed in to change notification settings - Fork 35
/
variables.tf
42 lines (33 loc) · 959 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
# main creds for AWS connection
variable "aws_access_key_id" {
description = "AWS access key"
}
variable "aws_secret_access_key" {
description = "AWS secret access key"
}
variable "availability_zone" {
description = "availability zone used for the demo, based on region"
default = {
us-east-1 = "us-east-1a"
us-west-1 = "us-west-1a"
}
}
########################### demo VPC Config ##################################
variable "vpc_name" {
description = "VPC for building demos"
}
variable "vpc_region" {
description = "AWS region"
}
variable "vpc_cidr_block" {
description = "Uber IP addressing for demo Network"
}
variable "vpc_public_subnet_1_cidr" {
description = "Public 0.0 CIDR for externally accessible subnet"
}
variable "vpc_access_from_ip_range" {
description = "Access can be made from the following IPs"
}
variable "vpc_private_subnet_1_cidr" {
description = "Private CIDR for internally accessible subnet"
}