-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathvariables.tf
81 lines (69 loc) · 1.33 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
# Required variables
variable "api_key" {}
variable "organization" {
default = "cloudops"
}
variable "username" {
default = "demo"
}
variable "admin_role" {
type = "list"
default = ["wstevens"]
}
variable "api_url" {
default = "https://api.cloud.ca/v1"
}
variable "service_name" {
default = "compute-on"
}
variable "zone" {
default = "ON-1"
}
# default network offering w/ LB
variable "network_offering" {
default = "Load Balanced Tier"
}
# default template type
variable "template" {
default = "CentOS 7.6 x64"
}
# default compute offering
variable "compute_offering" {
default = "Standard"
}
variable "master_vcpu_count" {
default = 8
}
variable "master_ram_in_mb" {
default = 32768
}
variable "master_root_volume_size_in_gb" {
default = 100
}
variable "worker_vcpu_count" {
default = 8
}
variable "worker_ram_in_mb" {
default = 16384
}
variable "worker_root_volume_size_in_gb" {
default = 50
}
variable "tf_repo" {
default = "docker.io/opencontrailnightly"
#default = "docker.io/tungstenfabric"
}
variable "tf_release" {
default = "latest"
#default="r5.0.1"
}
variable "tf_pod_cidr" {
default = "10.32.0.0/12"
}
variable "tf_service_cidr" {
default = "10.96.0.0/12"
}
variable "tf_ip_fabric_cidr" {
default = "10.64.0.0/12"
}
variable "tf_ui_password" {}