Files
terraform-talos/oracle/init/variables.tf
2022-02-01 16:45:42 +02:00

26 lines
530 B
HCL

variable "tenancy_ocid" {}
variable "user_ocid" {}
variable "fingerprint" {}
variable "key_file" {}
variable "region" {
description = "the OCI region where resources will be created"
type = string
default = null
}
variable "project" {
type = string
default = "main"
}
variable "tags" {
description = "Defined Tags of resources"
type = map(string)
default = {
"Environment" = "Resource environment"
"Role" = "Kubernetes node role"
"Type" = "Type of resource"
}
}