nixfiles/tf/oci_common_private_network/providers.tf
2024-06-08 17:25:08 -07:00

14 lines
230 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"
}
}
}