Initial commit: Terraform configurations for multiple cloud providers
This commit is contained in:
21
oracle/modules/compute/variables.tf
Normal file
21
oracle/modules/compute/variables.tf
Normal 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
|
||||
}
|
||||
Reference in New Issue
Block a user