* fix: remove unused attribute types and functions from backup models * fix: update API client references to use sqlserverflexalpha package * fix: update package references to use sqlserverflexalpha and modify user data source model * fix: add sqlserverflexalpha user data source to provider * fix: add sqlserverflexalpha user resource and update related functionality * chore: add stackit_sqlserverflexalpha_user resource and instance_id variable * fix: refactor sqlserverflexalpha user resource and enhance schema with status and default_database * chore: remove not needed service files * chore: cleanup import in utils * fix: provider name change * fix: clone missing doc files * fix: docs adjustments * fix: docs CI scripts * fix: docs naming * fix: remove guides from docs * fix: adjust examples * fix: remove obsolete doc templates * fix: docs adjustments * fix: add missing doc file * fix: temp rename file --------- Co-authored-by: Andre Harms <andre.harms@stackit.cloud> Co-authored-by: Marcel S. Henselin <marcel.henselin@stackit.cloud>
38 lines
1.3 KiB
Go
38 lines
1.3 KiB
Go
// Copyright (c) STACKIT
|
|
|
|
package utils
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/hashicorp/terraform-plugin-framework/path"
|
|
"github.com/hashicorp/terraform-plugin-framework/resource"
|
|
"github.com/hashicorp/terraform-plugin-framework/types"
|
|
"github.com/mhenselin/terraform-provider-stackitprivatepreview/stackit/internal/core"
|
|
)
|
|
|
|
// AdaptRegion rewrites the region of a terraform plan
|
|
func AdaptRegion(ctx context.Context, configRegion types.String, planRegion *types.String, defaultRegion string, resp *resource.ModifyPlanResponse) {
|
|
// Get the intended region. This is either set directly set in the individual
|
|
// config or the provider region has to be used
|
|
var intendedRegion types.String
|
|
if configRegion.IsNull() {
|
|
if defaultRegion == "" {
|
|
core.LogAndAddError(ctx, &resp.Diagnostics, "set region", "no region defined in config or provider")
|
|
return
|
|
}
|
|
intendedRegion = types.StringValue(defaultRegion)
|
|
} else {
|
|
intendedRegion = configRegion
|
|
}
|
|
|
|
// check if the currently configured region corresponds to the planned region
|
|
// on mismatch override the planned region with the intended region
|
|
// and force a replacement of the resource
|
|
p := path.Root("region")
|
|
if !intendedRegion.Equal(*planRegion) {
|
|
resp.RequiresReplace.Append(p)
|
|
*planRegion = intendedRegion
|
|
}
|
|
resp.Diagnostics.Append(resp.Plan.SetAttribute(ctx, p, *planRegion)...)
|
|
}
|