forked from piontec/free-oci-kubernetes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tf
35 lines (35 loc) · 1.07 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
variable "k8s_version" {
type = string
description = "k8s version"
default = "v1.30.1"
}
variable "arm_pool_count" {
type = number
description = "The number of instances pools."
default = 2
}
variable "arm_pool_size" {
type = number
description = "The number of ARM instances in a pool."
default = 1
}
variable "arm_pool_instance_disk_size_in_gb" {
type = number
description = "The size of attached volume in GB"
default = 50
}
variable "arm_pool_images" {
type = list(string)
description = "ready images for ARM pools"
default = [
# "Oracle-Linux-8.9-aarch64-2024.05.29-0-OKE-1.30.1-707"
"ocid1.image.oc1.eu-frankfurt-1.aaaaaaaaxp4b3zykqz7qh3du66gtkoxboqbx3htdx3bq4tzlnem7z54po6yq",
# "Oracle-Linux-8.9-aarch64-2024.05.29-0-OKE-1.30.1-707"
"ocid1.image.oc1.eu-frankfurt-1.aaaaaaaaxp4b3zykqz7qh3du66gtkoxboqbx3htdx3bq4tzlnem7z54po6yq",
]
}
variable "enable_wireguard" {
type = bool
description = "Weather or not create wireguard security group allow rules."
default = true
}