From 044c4912b4bd776a2e58b19f6d4a967589322868 Mon Sep 17 00:00:00 2001 From: yannic rieger Date: Mon, 14 Sep 2026 18:05:46 +0200 Subject: [PATCH] fix: use correct default for --idp-client-id flag --- cli/cmd/profile/create.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cli/cmd/profile/create.go b/cli/cmd/profile/create.go index f9ff572f..c0edecdf 100644 --- a/cli/cmd/profile/create.go +++ b/cli/cmd/profile/create.go @@ -108,7 +108,7 @@ func newCreateCommand(_ context.Context, cliCtx cli.Context) *cobra.Command { defaults := state.DefaultConfig cmd.Flags().String("control-plane-endpoint", defaults.ControlPlaneEndpoint, "The control-plane endpoint to use") cmd.Flags().String("idp-issuer-endpoint", defaults.IDPIssuerEndpoint, "The IDP endpoint to use for authentication") - cmd.Flags().String("idp-client-id", defaults.IDPIssuerEndpoint, "The client ID to use for authentication with the IDP") + cmd.Flags().String("idp-client-id", defaults.IDPClientID, "The client ID to use for authentication with the IDP") cmd.Flags().StringArray("idp-scopes", defaults.IDPScopes, "The scopes to use when authenticating with the IDP") cmd.Flags().Bool("set", false, "Sets the profile as active")