Skip to content

Commit 1ed177d

Browse files
committed
Merge branch disk_encrypt_change into v3.16xR
Title: 兼容apsarastack的disk加密参数 磁盘加密默认值兼容apsarastack Link: https://code.alibaba-inc.com/apsarastack-cross-platform/terraform-provider-apsarastack/codereview/20614861
2 parents 99fbf7a + 5afec91 commit 1ed177d

File tree

2 files changed

+16
-0
lines changed

2 files changed

+16
-0
lines changed

alibabacloudstack/resource_apsarastack_ecs_disk.go

+13
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ package alibabacloudstack
22

33
import (
44
"errors"
5+
"os"
56
"time"
67

78
"github.com/hashicorp/terraform-plugin-sdk/v2/helper/validation"
@@ -96,6 +97,18 @@ func resourceAlibabacloudStackDisk() *schema.Resource {
9697
Optional: true,
9798
ForceNew: true,
9899
ValidateFunc: validation.StringInSlice([]string{"sm4-128", "aes-256"}, false),
100+
DiffSuppressFunc: func(k, old, new string, d *schema.ResourceData) bool {
101+
// 无法直接读取 encrypted 的当前值,只能通过 ResourceData 获取可能不准确的状态
102+
if encrypted := d.Get("encrypted").(bool); !encrypted {
103+
return true
104+
} else if v, err := stringToBool(os.Getenv("APSARASTACK_IN_ALIBABACLOUDSTACK")); err != nil && v {
105+
if (old == "aes-256" && new == "") || (old == "" && new == "aes-256") {
106+
// 如果是APSARASTACK迁移模式,aes-256改""不触发变更
107+
return true
108+
}
109+
}
110+
return !d.HasChange("encrypt_algorithm")
111+
},
99112
},
100113

101114
"delete_auto_snapshot": {

alibabacloudstack/resource_apsarastack_edas_k8s_application.go

+3
Original file line numberDiff line numberDiff line change
@@ -646,6 +646,9 @@ func resourceAlibabacloudStackEdasK8sApplicationUpdate(d *schema.ResourceData, m
646646
if len(request.QueryParams["PackageUrl"]) == 0 {
647647
return errmsgs.WrapError(errmsgs.Error("package_url is needed for creating fatjar k8s application"))
648648
}
649+
if d.HasChange("package_version") {
650+
partialKeys = append(partialKeys, "package_version")
651+
}
649652
request.QueryParams["PackageVersion"] = d.Get("package_version").(string)
650653

651654
if d.HasChange("jdk") {

0 commit comments

Comments
 (0)