Files
terraform-talos/oracle/init/variables.tf
2022-01-04 00:12:06 +02:00

25 lines
507 B
HCL

variable "tenancy_ocid" {}
variable "user_ocid" {}
variable "fingerprint" {}
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"
}
}