Skip to content
GitLab
Explore
Projects
Groups
Snippets
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
eos-test
terraform-aliyun-ydd-aliyun-ecs-spot
Commits
1bd99585
Commit
1bd99585
authored
2 years ago
by
huyang
Browse files
Options
Download
Email Patches
Plain Diff
commit
parent
c2b28a46
master
v2.0/035da7
v2.0/06d6ef
v2.0/092f57
v2.0/0adec2
v2.0/12c8cb
v2.0/158d9d
v2.0/1b35ab
v2.0/1cb915
v2.0/2e081c
v2.0/35f2bc
v2.0/3fce98
v2.0/7b63e3
v2.0/7df862
v2.0/9a385c
v2.0/9bafb9
v2.0/a29269
v2.0/b5b0b5
v2.0/b62a91
v2.0/bf6fa1
v2.0/d78e28
v2.0/e62c00
v2.0/eb425a
v2.0/ee74e6
v2.0/f50be4
v2.0/f6d955
v2.0/ff4dbc
v2.0
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
variables.tf
+66
-0
variables.tf
with
66 additions
and
0 deletions
+66
-0
variables.tf
0 → 100644
+
66
-
0
View file @
1bd99585
variable
"availability_zone"
{
description
=
"可用区"
type
=
string
default
=
"cn-hangzhou-h"
}
variable
"instance_number"
{
description
=
"需创建的ECS实例数量"
type
=
number
default
=
1
}
variable
"instance_type"
{
description
=
"实例类型"
type
=
string
default
=
"ecs.s6-c1m1.small"
}
variable
"system_disk_category"
{
description
=
"系统盘类型"
type
=
string
default
=
"cloud_efficiency"
}
variable
"system_disk_size"
{
description
=
"系统盘大小,取值:20-500 GB"
type
=
number
default
=
20
}
variable
"password"
{
description
=
"管理密码,大写字母、小写字母、数据、特殊符号至少包含三种,长度8-32"
type
=
string
sensitive
=
true
default
=
"Passw0rd@"
}
variable
"image_id"
{
description
=
"操作系统镜像"
type
=
string
default
=
"ubuntu_18_04_64_20G_alibase_20190624.vhd"
}
variable
"instance_name"
{
description
=
"ECS实例名称"
type
=
string
default
=
"ecs-cpg-instance"
}
variable
"bandwidth_out"
{
description
=
"公网出口带宽,设置为0时不分配公网IP"
type
=
number
default
=
10
}
variable
"charge_type"
{
description
=
"计费方式,取值:PrePaid=包年包月,PostPaid=按需"
type
=
string
default
=
"PostPaid"
}
variable
"spot_strategy"
{
description
=
"The spot strategy of a Pay-As-You-Go instance"
type
=
string
default
=
"SpotAsPriceGo"
}
This diff is collapsed.
Click to expand it.
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment
Menu
Explore
Projects
Groups
Snippets