-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tf
123 lines (95 loc) · 1.96 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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
variable "rancher_name" {
default = "rancher"
}
variable "rancher_hostname" {
default = "rancher.example.com"
}
variable "rancher_image_repo" {
default = "docker.io/rancher/rancher"
}
variable "rancher_image_tag" {
default = null
type = string
}
variable "rancher_chart_version" {
# registryUrl=https://releases.rancher.com/server-charts/stable depName=rancher
default = "2.9.2"
}
variable "rancher_replicas" {
default = null
description = "defaults to cluster_size"
}
variable "rancher_ip_whitelist" {
default = "0.0.0.0/0"
}
variable "rancher_backup_enabled" {
default = false
}
variable "rancher_backup_chart_version" {
# registryUrl=https://charts.rancher.io depName=rancher-backup
default = "104.0.1+up5.0.1"
}
variable "rancher_backup_chart_values" {
default = []
}
variable "cluster_availability_zone" {
default = "nova"
}
variable "cluster_size" {
default = 1
}
variable "cluster_image_name" {
default = "ubuntu-20.04"
}
variable "cluster_image_id" {
default = null
}
variable "cluster_image_scsi_bus" {
default = false
}
variable "cluster_flavor_name" {
default = "m1.medium"
}
variable "cluster_data_volume_type" {
default = "__DEFAULT__"
}
variable "cluster_data_volume_size" {
default = 10
}
variable "cluster_key_pair" {
type = string
default = null
}
variable "cluster_server_group_policy" {
default = "soft-anti-affinity"
}
variable "cluster_floating_ip_pool" {
default = null
}
variable "cluster_server1_floating_ip" {
default = false
}
variable "cluster_servers_floating_ip" {
default = false
}
variable "cluster_network_id" {
type = string
}
variable "cluster_subnet_id" {
type = string
}
variable "cluster_instance_properties" {
default = {}
}
variable "cluster_k3s_version" {
default = null
}
variable "cluster_k3s_channel" {
default = "v1.21"
}
variable "cert_manager_cluster_issuer_name" {
default = "letsencrypt"
}
variable "cert_manager_cluster_issuer_yaml" {
default = null
}