-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tf
51 lines (39 loc) · 865 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
43
44
45
46
47
48
49
50
51
variable "OS_USERNAME" {}
variable "OS_TENANT_NAME" {}
variable "OS_PASSWORD" {}
variable "OS_AUTH_URL" {}
variable "public_key_file" {
default = "~/.ssh/id_rsa.pub"
}
variable "private_key_file" {
default = "~/.ssh/id_rsa"
}
variable "IMAGE_NAME" {
default = "CentOS 7"
}
variable "master_type" {
default = "m1.large"
}
variable "node_type" {
default = "m1.large"
}
variable "k8s_masters" {
default = "1"
}
variable "k8s_nodes" {
default = "2"
}
variable "local_ssh_sec_group" {}
variable "local_consul_sec_group" {}
variable "network_name" {
default = "OpenShift"
}
variable "domain_name" {
default = "example.com"
}
variable "consul_download_url" {
default = "https://releases.hashicorp.com/consul/1.0.1/consul_1.0.1_linux_amd64.zip"
}
variable "consul_join_ip" {}
variable "consul_datacenter" {}
variable "consul_encrypt_key" {}