mirror of
https://github.com/vcscsvcscs/OCI-Kubernetes-cluster-with-traefik.git
synced 2025-08-12 22:09:08 +02:00
34 lines
610 B
HCL
34 lines
610 B
HCL
variable "compartment_ocid" {}
|
|
variable "tenancy_ocid" {}
|
|
variable "user_ocid" {}
|
|
variable "fingerprint" {}
|
|
variable "private_key_path" {}
|
|
variable "availability_domain" {}
|
|
variable "cluster_name" {}
|
|
|
|
variable "certmanager_email_address" {
|
|
type = string
|
|
}
|
|
variable "cloudflare_email_address" {
|
|
type = string
|
|
}
|
|
variable "cloudflare_api_key" {
|
|
type = string
|
|
}
|
|
|
|
variable "region" {}
|
|
variable "public_key_path" {}
|
|
|
|
variable "node_pool_size" {
|
|
default = 2
|
|
}
|
|
|
|
variable "k3s_extra_worker_node" {
|
|
default = false
|
|
}
|
|
variable "expose_kubeapi" {
|
|
default = false
|
|
}
|
|
variable "environment" {
|
|
default = "prod"
|
|
} |