Files
terraform-talos/oracle/services/variables.tf
Serge Logvinov 4934aebeff sync setup
2024-08-16 17:57:31 +03:00

36 lines
793 B
HCL

variable "compartment_ocid" {
description = "The OCID of the compartment"
type = string
default = "ocid1.compartment.oc1.."
}
variable "tenancy_ocid" {
description = "The OCID of the tenancy"
type = string
default = "ocid1.tenancy.oc1.."
}
variable "user_ocid" {}
variable "fingerprint" {}
variable "key_file" {
default = "~/.oci/oci_production_terraform.pem"
}
data "terraform_remote_state" "prepare" {
backend = "local"
config = {
path = "${path.module}/../prepare/terraform.tfstate"
}
}
locals {
project = data.terraform_remote_state.prepare.outputs.project
region = data.terraform_remote_state.prepare.outputs.region
tags = data.terraform_remote_state.prepare.outputs.tags
}
variable "repos" {
default = [
"kubelet",
]
}