SecretManagement.LastPass icon indicating copy to clipboard operation
SecretManagement.LastPass copied to clipboard

A PowerShell SecretManagement extension for LastPass

Results 6 SecretManagement.LastPass issues
Sort by recently updated
recently updated
newest added

```powershell ❯ Get-Secret -Name 'Some secret' -AsPlainText -Vault lastpass -Verbose VERBOSE: Invoking command Get-SecretInfo on module SecretManagement.LastPass.Extension VERBOSE: Secret information was successfully retrieved from vault lastpass. VERBOSE: Invoking command Get-Secret...

Not sure why this fails. ![test-vault](https://user-images.githubusercontent.com/12089920/114785529-d44eb200-9d4a-11eb-8d06-8a6ca7b21102.png) The vault and extension work fine otherwise.

What I'd love to get is a formatter (ps1xml) to get the **Notes** field multiline content expanded automatically. Technically, all values could be expanded as only the Notes field can...

enhancement
help wanted

I am having problem with making SecretManagement.LastPass find my cygwin64 installed lastpass.cli. Tried different variation of : Register-LastPassVault -Name 'Vault' -Path "C:\cygwin64\bin\lpass.exe" Always: `throw "lpass executable not found or installed."`...

The psm1s are getting big! We should move over to the module layout that has been pretty popular and successful: SecretManagement.LastPass.Extension.psd1 SecretManagement.LastPass.Extension.psm1 Public/ * Get-Secret.ps1 * etc Private/ * Invoke-LpassInternal.ps1...

Doing operation on the same secret many time in a row can cause issues because of sync lag. It can lead to duplicate secrets as the Add / Edit, which...