From 72ce3dcf573b856ab8c42f54823aa178704f7556 Mon Sep 17 00:00:00 2001 From: Sam Stenvall Date: Tue, 22 Oct 2024 14:56:27 +0300 Subject: [PATCH] Allow CLOUD_BSSD and CLOUD_HSSD as system disks Needed in order to use e.g. SA5 instances. Fixes #132. --- builder/tencentcloud/cvm/run_config.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/builder/tencentcloud/cvm/run_config.go b/builder/tencentcloud/cvm/run_config.go index e4a45e11..bf111f26 100644 --- a/builder/tencentcloud/cvm/run_config.go +++ b/builder/tencentcloud/cvm/run_config.go @@ -110,7 +110,7 @@ type TencentCloudRunConfig struct { } var ValidCBSType = []string{ - "LOCAL_BASIC", "LOCAL_SSD", "CLOUD_BASIC", "CLOUD_SSD", "CLOUD_PREMIUM", + "LOCAL_BASIC", "LOCAL_SSD", "CLOUD_BASIC", "CLOUD_SSD", "CLOUD_PREMIUM", "CLOUD_BSSD", "CLOUD_HSSD", } func (cf *TencentCloudRunConfig) Prepare(ctx *interpolate.Context) []error {