Commit 959ac125 authored by admin's avatar admin
Browse files

环境代码变更

No related merge requests found
Showing with 37 additions and 36 deletions
+37 -36
variable "cpu"{
type = number
description = "CPU核心数"
default = 2
}
variable "cpu" {
type = number
description = "CPU核心数"
default = 2
variable "memory"{
type = number
description = "内存大小"
default = 4
}
variable "memory" {
type = number
description = "内存大小"
default = 4
variable "allocate_public_ip"{
type = bool
description = "是否申请公网IP"
default = true
}
variable "allocate_public_ip" {
type = bool
description = "是否申请公网IP"
default = true
variable "instance_name"{
type = string
description = "实例名称"
default = "backuptest"
}
variable "instance_name" {
type = string
description = "实例名称"
default = "backuptest"
variable "instance_number"{
type = number
description = "实例数量"
default = 2
}
variable "instance_number" {
type = number
description = "实例数量"
default = 2
variable "tags"{
type = map(string)
description = "实例标签"
default = {}
}
variable "tags" {
type = map(string)
description = "实例标签"
default = {}
variable "system_disk_type"{
type = string
description = "系统盘类型"
default = "cloud_efficiency"
}
variable "system_disk_type" {
type = string
description = "系统盘类型"
default = "cloud_efficiency"
variable "system_disk_size"{
type = number
description = "系统盘大小"
default = 40
}
variable "system_disk_size" {
type = number
description = "系统盘大小"
default = 40
variable "backup_env_id"{
type = string
description = "备份环境id"
default = ""
}
variable "backup_env_id" {
type = string
description = "备份环境id"
}
\ No newline at end of file
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment