diff --git a/.changelog/203.txt b/.changelog/203.txt new file mode 100644 index 00000000..fbaf6db3 --- /dev/null +++ b/.changelog/203.txt @@ -0,0 +1,3 @@ +```release-note:bug +vault-secrets: corrected error output for postgres integration creation, MongoDB Atlas -> Postgres. +``` diff --git a/internal/commands/vaultsecrets/integrations/create.go b/internal/commands/vaultsecrets/integrations/create.go index b89e6f31..7c7e2951 100644 --- a/internal/commands/vaultsecrets/integrations/create.go +++ b/internal/commands/vaultsecrets/integrations/create.go @@ -271,7 +271,7 @@ func createRun(opts *CreateOpts) error { _, err = opts.Client.CreatePostgresIntegration(req, nil) if err != nil { - return fmt.Errorf("failed to create MongoDB Atlas integration: %w", err) + return fmt.Errorf("failed to create Postgres integration: %w", err) } default: