Files
OCI-Kubernetes-cluster-with…/oci-managed/variables.tf

42 lines
722 B
HCL

variable "compartment_ocid" {}
variable "tenancy_ocid" {}
variable "user_ocid" {}
variable "fingerprint" {}
variable "private_key_path" {}
variable "availability_domain" {}
variable "cluster_name" {}
variable "cloudflare_api_email" {
type = string
}
variable "cloudflare_api_key" {
type = string
}
variable "cloudflare_origin_certificate_pem" {
type = string
}
variable "cloudflare_origin_certificate_key" {
type = string
}
variable "my_domain" {
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"
}