Initial commit: Terraform configurations for multiple cloud providers

This commit is contained in:
Ben User
2026-02-01 06:36:02 +00:00
commit 70f160b396
58 changed files with 1813 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
variable "compartment_id" {
description = "Compartment OCID"
type = string
}
variable "instance_name" {
description = "计算实例名称"
type = string
default = "my-instance"
}
variable "shape" {
description = "实例规格"
type = string
default = "VM.Standard2.1"
}
variable "subnet_id" {
description = "子网 OCID"
type = string
}