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

View File

@@ -0,0 +1,16 @@
variable "compartment_ocid" {}
variable "vcn_id" {}
variable "vcn_nat_route_id" {
type = string
}
variable "vcn_ig_route_id" {
type = string
}
variable "cluster_name" {
type = string
}
variable "environment" {
default = "prod"
}