terraform-oci-free/terraform.tf
2024-05-27 13:24:05 +06:00

20 lines
346 B
HCL

terraform {
required_version = "~> 1.8.0"
required_providers {
oci = {
source = "oracle/oci"
version = "~> 5.43.0"
}
tls = {
source = "hashicorp/tls"
version = "~> 4.0.5"
}
}
backend "remote" {}
}
provider "oci" {
region = var.oci_region
config_file_profile = var.oci_profile
}