Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/commands/createVault.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ export const createVaultCommand = (program: Command): void => {
.option('--template <template>', 'Template to use for the vault')
.option('--description <description>', 'Description for the vault')
.option('--master-key <key>', 'Master encryption key for the vault')
.option('--create-service-account [boolean]', 'Create a service account for the vault', false)
.option('--create-service-account [boolean]', 'Create a service account for the vault', true)
.option('--schema <path>', 'Path to JSON schema file for the vault')
.option('--workspace-id <id>', 'Workspace ID for the vault')
.option('--verbose', 'Enable verbose logging for debugging')
Expand Down
2 changes: 1 addition & 1 deletion src/utils/prompts.ts
Original file line number Diff line number Diff line change
Expand Up @@ -248,7 +248,7 @@ export const promptForMissingOptions = async (options: VaultOptions): Promise<Va
type: 'confirm',
name: 'createServiceAccount',
message: 'Create a service account for this vault?',
default: false
default: true
}
]);

Expand Down