PowerShell / Modules

MIT License
112 stars 25 forks source link

[SecretsManagement] [FeatureRequest] Pipeline Support and other "Powershelly" behavior #30

Open JustinGrote opened 4 years ago

JustinGrote commented 4 years ago

Summary of the new feature/enhancement

As a Powershell User, I want to be able to use pipelines to retrieve credentials and perform various manipulations using the secrets cmdlets to be more efficient

Examples: Get-SecretInfo 'MyTestSecret' | Get-Secret Get-Secret 'MyTestSecret' | Add-Secret -Name 'MyTestSecretDuplicate' Get-SecretsVault 'builtinlocalvault' | Get-SecretInfo | where typename -eq 'String' | Get-Secret Get-SecretsVault 'builtinlocalvault' | Get-Secret 'mysecret' Get-AzureVMKeyVaultName | Get-SecretsVault | Get-Secret 'myAzureKeyVaultSecret'

Proposed technical implementation details (optional)