Skip to content

Commit 8a3bd78

Browse files
committed
chore: add temporary replace directive for SDK CLI auth support
Add replace directive to use SDK fork with CLI authentication support from PR stackitcloud/stackit-sdk-go#3865 until it's merged and released. This allows the provider to be built and tested with the CLI auth functionality before the SDK changes are officially released. The replace directive references commit 25b6b99bd648 from github.com/franklouwers/stackit-sdk-go/core which includes the core/cliauth package and config.WithCLIProviderAuth() function. Once SDK PR #3865 is merged and a new SDK version is released, this replace directive should be removed and the provider updated to require the new SDK version.
1 parent 5872de6 commit 8a3bd78

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

go.mod

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -102,3 +102,9 @@ require (
102102
)
103103

104104
tool golang.org/x/tools/cmd/goimports
105+
106+
// Temporary: Use local SDK with CLI auth support until SDK PR #3865 is merged
107+
// See: https://github.com/stackitcloud/stackit-sdk-go/pull/3865
108+
// For testing, use: replace github.com/stackitcloud/stackit-sdk-go/core => ../stackit-sdk-go/core
109+
// For CI/others: replace github.com/stackitcloud/stackit-sdk-go/core => github.com/franklouwers/stackit-sdk-go/core v0.0.0-20251127223915-25b6b99bd648
110+
replace github.com/stackitcloud/stackit-sdk-go/core => github.com/franklouwers/stackit-sdk-go/core v0.0.0-20251127223915-25b6b99bd648

0 commit comments

Comments
 (0)