We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cacb830 commit 9edcf52Copy full SHA for 9edcf52
internal/service/advancedclustertpf/plan_modifier.go
@@ -22,7 +22,7 @@ func useStateForUnknowns(ctx context.Context, diags *diag.Diagnostics, plan, sta
22
}
23
24
func determineKeepUnknowns(upgradeRequest *admin.LegacyAtlasTenantClusterUpgradeRequest, patchReq *admin.ClusterDescription20240805) []string {
25
- keepUnknown := []string{"connection_strings"} // ConnectionStrings is volatile and should not be copied from state
+ keepUnknown := []string{"connection_strings", "state_name"} // Volatile attributes, should not be copied from state
26
if upgradeRequest != nil {
27
// TenantUpgrade changes a few root level fields that are normally ok to use state values for
28
keepUnknown = append(keepUnknown, "disk_size_gb", "cluster_id", "replication_specs", "backup_enabled", "create_date")
0 commit comments