fix: fix wrong order of params
Some checks failed
CI Workflow / Check GoReleaser config (pull_request) Successful in 6s
CI Workflow / CI run tests (pull_request) Failing after 23m48s
CI Workflow / CI run build and linting (pull_request) Successful in 24m11s
CI Workflow / Code coverage report (pull_request) Successful in 5s
CI Workflow / Test readiness for publishing provider (pull_request) Successful in 34m5s

This commit is contained in:
Marcel S. Henselin 2026-02-13 15:54:08 +01:00
parent e01ae1a920
commit a42b1d6b31
3 changed files with 13 additions and 8 deletions

View file

@ -488,7 +488,7 @@ func (r *userResource) ImportState(
resp.Diagnostics.Append(resp.State.SetAttribute(ctx, path.Root("instance_id"), idParts[2])...)
resp.Diagnostics.Append(resp.State.SetAttribute(ctx, path.Root("user_id"), userId)...)
tflog.Info(ctx, "Postgres Flex user state imported")
tflog.Info(ctx, "SQLServer Flex user state imported")
return
}