SecretManagement
SecretManagement copied to clipboard
PowerShell module to consistent usage of secrets through different extension vaults
This is related to SecretStore issue (https://github.com/PowerShell/SecretStore/issues/76#issuecomment-878563772). If an extension vault does not support multiple registrations but is registered twice in SecretManagement, the vault will be registered twice with different...
### Summary of the new feature / enhancement Like Bitwarden-Cli please implement Password/Passphrase Generator for the SecretManagement Module: ### Proposed technical implementation details (optional) Options: -u, --uppercase Include uppercase characters....
### Prerequisites - [X] Write a descriptive title. - [X] Make sure you are able to repro it on the [latest released version](https://www.powershellgallery.com/packages/Microsoft.PowerShell.SecretManagement) - [X] Search the existing issues. ###...
### Prerequisites - [X] Write a descriptive title. - [X] Make sure you are able to repro it on the [latest released version](https://www.powershellgallery.com/packages/Microsoft.PowerShell.SecretManagement) - [X] Search the existing issues. ###...
From: https://github.com/PowerShell/PowerShell/issues/11218 SecretManagement currently supports the following scenarios very well: 1. Usage by an interactive user to retrieve credentials for cmdlets 2. Usage in scripts run by an interactive user...
I've run into an issue where I installed an extension, registered a vault, and then moved the installation path of the extension. When I did this, even though the new...
For automation using SSH and not wanting to deploy keys/certs, it may be useful to have a standalone exe shipped with SecretManagement that could be used with SSH_ASKPASS that emits...
I've realized that the secret management module is [not thread safe](https://github.com/PowerShell/SecretManagement/blob/master/src/code/Utils.cs#L1497). In PowerShell Universal, we create a new runspace when accessing secret management, but it doesn't matter because secret management...
Allow `Get-SecretVault` to include a property for the version of the extension currently loaded to help users and extension developers ensure they have the expected extension version loaded.
Now that the extension vault will run in a runspace, should I stop including it in nestedmodules in the manifest? My concern is that my module will call my internal...