-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvariables.tf
More file actions
42 lines (36 loc) · 702 Bytes
/
variables.tf
File metadata and controls
42 lines (36 loc) · 702 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
37
38
39
40
41
42
variable "auth_url" {}
variable "tenant_name" {}
variable "tenant_id" {}
variable "username" {}
variable "password" {}
variable "key_path" {}
variable "public_key_path" {}
variable "floating_ip_pool" {}
variable "network_external_id" {}
variable "region" {
default = "RegionOne"
}
variable "network" {
default = "192.168"
}
variable "cf_admin_pass" {
default = "c1oudc0wc1oudc0w"
}
variable "install_docker_services" {
default = "false"
}
variable "cf_domain" {
default = "XIP"
}
variable "cf_boshworkspace_version" {
default = "v1.1.4"
}
variable "cf_size" {
default = "tiny"
}
variable "image_name" {
default = "ubuntu-14.04"
}
variable "flavor_name" {
default = "m1.medium"
}