Add oci managed terraform + create snet module

This commit is contained in:
2024-03-03 14:03:14 +01:00
parent 32fd6300bf
commit 114f0ce3d5
8 changed files with 222 additions and 0 deletions

17
oci-managed/provider.tf Normal file
View File

@@ -0,0 +1,17 @@
terraform {
required_providers {
oci = {
source = "oracle/oci"
version = ">= 5.30.0"
}
}
}
provider "oci" {
tenancy_ocid = var.tenancy_ocid
user_ocid = var.user_ocid
private_key_path = pathexpand(var.private_key_path)
fingerprint = var.fingerprint
region = var.region
retry_duration_seconds = 120
}