21 lines
395 B
HCL
21 lines
395 B
HCL
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
|
|
} |