tf-oci-ans-selfhost-dev/terraform_plans/main.tf
2023-07-31 10:48:44 -04:00

23 lines
411 B
HCL

terraform {
required_version = ">= 1.4.0"
backend "local" {
path = "terraform.tfstate"
}
required_providers {
oci = {
version = ">= 4.110.0 "
source = "oracle/oci"
}
}
}
provider "oci" {
tenancy_ocid = var.tenancy_ocid
user_ocid = var.user_ocid
private_key_path = var.private_key_path
fingerprint = var.fingerprint
region = var.region
}