mirror of
https://github.com/optim-enterprises-bv/terraform-talos.git
synced 2025-10-30 01:52:18 +00:00
26 lines
530 B
HCL
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"
|
|
}
|
|
}
|