Files
terraform/oracle/kr/main.tf

15 lines
333 B
HCL

# Configure Terraform to use the locally downloaded OCI provider
terraform {
required_providers {
oci = {
source = "oracle/oci"
version = "7.32.0"
# Pin to specific version to ensure consistency
}
}
}
# Configure the provider to use local installation
provider "oci" {
config_file_profile = "korea"
}