-
Notifications
You must be signed in to change notification settings - Fork 2
/
variables.tf
86 lines (68 loc) · 1.48 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
variable "cluster_name" {
default = "example"
}
variable "boot_ignition" {
default = "{}"
}
variable "master_ignition" {
default = "{}"
}
variable "worker_ignition" {
default = "{}"
}
variable "public_key_path" {
default = "~/.ssh/id_rsa.pub"
}
variable "ssh_user" {
default = "centos"
}
variable "dns_zone_id" {
default = ""
}
variable "number_of_boot" {
default = 1
}
variable "number_of_masters" {
default = 1
}
variable "number_of_workers" {
default = 0
}
variable "master_volume_size" {
default = 20
}
variable "node_volume_size" {
default = 20
}
variable "image_lb" {
description = "the image to use (LB)"
default = "GOLD CentOS 7"
}
variable "image" {
description = "the image to use (cluster)"
default = "fedora-coreos-31.20200118.3.0"
}
variable "flavor_master" {
description = "Use 'nova flavor-list' command to see what your OpenStack instance uses for IDs"
default = 3
}
variable "flavor_worker" {
description = "Use 'nova flavor-list' command to see what your OpenStack instance uses for IDs"
default = 3
}
variable "flavor_lb" {
description = "Use 'nova flavor-list' command to see what your OpenStack instance uses for IDs"
default = 3
}
variable "network_name" {
description = "name of the internal network to use"
default = "dualstack"
}
variable "domain_name" {
description = "DNS domain name"
default = "example.uiocloud.no"
}
variable "allow_ssh_from_v4" {
type = list(string)
default = []
}