nixfiles/tf/oci_common_private_network/providers.tf
2025-07-13 05:10:57 -07:00

14 lines
232 B
HCL

terraform {
required_providers {
# Vendor: Hashicorp
tls = {
source = "hashicorp/tls"
version = "4.0.5"
}
# Vendor: Oracle
oci = {
source = "oracle/oci"
version = "5.45.0"
}
}
}