Files
OCI-Kubernetes-cluster-with…/oci-managed/variables.tf
2024-03-17 13:01:08 +01:00

45 lines
748 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 "install_argocd" {
type = bool
default = true
}
variable "install_cert_manager" {
type = bool
default = true
}
variable "region" {}
variable "public_key_path" {}
variable "node_pool_size" {
default = 2
}
variable "environment" {
default = "prod"
}