-
Notifications
You must be signed in to change notification settings - Fork 0
/
global_variables.tf
61 lines (61 loc) · 2.48 KB
/
global_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
#this file need to link varribles from root main.tf to modules in sub-dir
#https://discuss.hashicorp.com/t/trying-to-understand-input-variables-tfvars-variables-tf/22324/4
variable "global_master_cpu_count" {}
variable "global_xen_network_name" {}
variable "global_xen_vm_template_name" {}
variable "global_xen_pool_name" {}
variable "global_xen_xoa_url" {}
variable "global_xen_xoa_username" {}
variable "global_xen_xoa_password" {}
variable "global_xen_xoa_insecure" {}
variable "global_node_count" {}
variable "global_master_disk_size_gb" {}
variable "global_vm_disk_size_gb" {}
variable "global_master_memory_size_gb" {}
variable "global_vm_rsa_ssh_key" {}
variable "global_xen_sr_id" {}
variable "global_xen_large_sr_id" {}
variable "global_master_labels" {}
variable "global_node_labels" {}
variable "global_master_vm_tags" {}
variable "global_node_vm_tags" {}
variable "global_certificate_params" {}
variable "global_vm_storage_disk_size_gb" {}
variable "global_dns_key_name" {}
variable "global_dns_key_secret" {}
variable "global_vm_memory_size_gb" {}
variable "global_vm_cpu_count" {}
variable "global_dns_server" {}
variable "global_dns_zone" {}
variable "global_dns_sub_zone" {}
variable "global_master_node_address_mask" {}
variable "global_master_node_address_start_ip" {}
variable "global_worker_node_address_mask" {}
variable "global_worker_node_address_start_ip" {}
variable "global_nodes_mask" {}
variable "global_nodes_gateway" {}
variable "global_nodes_dns_address" {}
variable "global_pods_address_mask" {}
variable "global_pods_mask_cidr" {}
variable "global_master_node_network_dhcp" {}
variable "global_worker_node_network_dhcp" {}
variable "global_master_node_high_availability" {
type = bool
description = "If this is a multiple instance deployment, choose `true` to deploy 3 instances"
default = true
}
variable "global_version_containerd" {}
variable "global_version_runc" {}
variable "global_version_cni-plugin" {}
variable "global_k8s_api_endpoint_ip" {}
variable "global_k8s_api_endpoint_port" {}
variable "global_k8s_cni_hairpinMode" {}
variable "global_k8s_cni_isDefaultGateway" {}
variable "global_k8s_cni_Backend_Type" {}
variable "global_kube-dashboard_nodePort" {}
variable "global_ssd_k8s_stor_pool_type" {}
variable "global_ssd_k8s_stor_pool_name" {}
variable "global_nvme_k8s_stor_pool_type" {}
variable "global_nvme_k8s_stor_pool_name" {}
variable "global_hdd_k8s_stor_pool_type" {}
variable "global_hdd_k8s_stor_pool_name" {}