terraform { required_version = ">= 1.5.0" required_providers { oci = { source = "oracle/oci" version = ">= 6.0.0" } tls = { source = "hashicorp/tls" version = ">= 4.0.0" } } } provider "oci" { tenancy_ocid = var.tenancy_ocid user_ocid = var.user_ocid fingerprint = var.fingerprint private_key_path = var.private_key_path region = var.region }