nix/terraform/ocf/main.tf
iofq 3d8242b314
Some checks failed
/ check (push) Has been cancelled
opentofu incus
2026-03-23 00:19:00 -05:00

25 lines
489 B
HCL

terraform {
required_version = ">= 1.3.0"
cloud {
organization = "lab-xyz"
workspaces {
name = "xyz-homelab"
}
}
required_providers {
oci = {
source = "oracle/oci"
version = ">= 4.90.0"
}
}
}
provider "oci" {
tenancy_ocid = var.tenancy_ocid
user_ocid = var.user_ocid
private_key = var.private_key
fingerprint = var.fingerprint
region = var.region
}