Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion tencentcloud/resource_tc_kubernetes_cluster.go
Original file line number Diff line number Diff line change
Expand Up @@ -1975,7 +1975,7 @@ func resourceTencentCloudTkeClusterCreate(d *schema.ResourceData, meta interface
} else {
// GR cluster
if cidrSet.ClusterCidr == "" {
return fmt.Errorf("`service_cidr` must be set when cluster `network_type` is GR")
return fmt.Errorf("`cluster_cidr` must be set when cluster `network_type` is GR")
}
items := strings.Split(cidrSet.ClusterCidr, "/")
if len(items) != 2 {
Expand Down