-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathvariables.tf
53 lines (47 loc) · 1.22 KB
/
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
43
44
45
46
47
48
49
50
51
52
53
variable "aws_access_key" {}
variable "aws_secret_key" {}
variable "aws_key_path" {}
variable "aws_key_name" {}
variable "aws_region" {
default = "us-west-2"
}
variable "network" {
default = "10.10"
}
variable "offset" {
default = ""
}
variable "aws_vpc_id" {}
variable "aws_internet_gateway_id" {}
variable "aws_route_table_public_id" {}
variable "aws_route_table_private_id" {}
variable "aws_subnet_cfruntime-2a_availability_zone" {
default = "us-west-2a"
}
variable "aws_subnet_cfruntime-2b_availability_zone" {
default = "us-west-2a"
}
variable "aws_ubuntu_ami" {
default = {
us-east-1 = "ami-98aa1cf0"
us-west-1 = "ami-736e6536"
us-west-2 = "ami-37501207"
ap-northeast-1 = "ami-df4b60de"
ap-southeast-1 = "ami-2ce7c07e"
ap-southeast-2 = "ami-1f117325"
eu-west-1 = "ami-f6b11181"
sa-east-1 = "ami-71d2676c"
}
}
variable "aws_centos_ami" {
default = {
us-east-1 = "ami-00a11e68"
us-west-1 = "ami-e04b7aa5"
us-west-2 = "ami-3425be04"
ap-northeast-1 = "ami-9392dc92"
ap-southeast-1 = "ami-dcbeed8e"
ap-southeast-2 = "ami-89e88db3"
eu-west-1 = "ami-af6faad8"
sa-east-1 = "ami-73ee416e"
}
}