forked from elventear/terraform-aws-cf-install
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tf
92 lines (82 loc) · 2.04 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
variable "aws_access_key" {}
variable "aws_secret_key" {}
variable "aws_key_path" {}
variable "aws_key_name" {}
variable "aws_region" {
default = "us-west-2"
}
variable "install_docker_services" {
default = "false"
}
variable "cf1_az" {
default = {
us-east-1 = "us-east-1c"
us-west-1 = "us-west-1c"
us-west-2 = "us-west-2a"
ap-northeast-1 = "ap-northeast-1a"
ap-southeast-1 = "ap-southeast-1a"
ap-southeast-2 = "ap-southeast-2a"
eu-west-1 = "eu-west-1a"
sa-east-1 = "sa-east-1a"
}
}
variable "cf2_az" {
default = {
us-east-1 = "us-east-1e"
us-west-1 = "us-west-1b"
us-west-2 = "us-west-2b"
ap-northeast-1 = "ap-northeast-1b"
ap-southeast-1 = "ap-southeast-1b"
ap-southeast-2 = "ap-southeast-2b"
eu-west-1 = "eu-west-1b"
sa-east-1 = "sa-east-1b"
}
}
variable "network" {
default = "10.10"
}
variable "cf_admin_pass" {
default = "c1oudc0wc1oudc0w"
}
variable "cf_domain" {
default = "XIP"
}
variable "cf_boshworkspace_version" {
default = "af-stemcell"
}
variable "cf_size" {
default = "tiny"
}
variable "aws_centos_ami" {
default = {
us-east-1 = "ami-00a11e68"
us-west-1 = "ami-ba3c3bff"
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"
}
}
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 "appfirst_tenant_id" {}
variable "appfirst_frontend_url" {
default = "pod2-frontend.appfirst.com"
}
variable "appfirst_server_tags" {
default = "stemcell"
}
variable "appfirst_user_id" {}
variable "appfirst_user_key" {}