-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathvariables.tf
40 lines (34 loc) · 852 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
variable "aws_access_key" {}
variable "aws_secret_key" {}
variable "aws_key_path" {}
variable "aws_key_name" {}
variable "home_cidr" {}
variable "aws_region" {
default = "eu-west-2"
}
variable "amis" {
description = "AMI configuration per region"
default = {
eu-west-2 = "ami-cc7066a8" #ubuntu 16.04
}
}
variable "vpc_cidr" {
description = "full VPC CIDR"
default = "10.0.0.0/16"
}
variable "public1_subnet_cidr" {
description = "CIDR for Primary Public Subnet"
default = "10.0.0.0/24"
}
variable "public2_subnet_cidr" {
description = "CIDR for Secondary Public Subnet"
default = "10.0.1.0/24"
}
variable "private1_subnet_cidr" {
description = "CIDR for Primary Private Subnet"
default = "10.0.2.0/24"
}
variable "private2_subnet_cidr" {
description = "CIDR for Secondary Private Subnet"
default = "10.0.3.0/24"
}