You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm attempting to learn how to develop a vault using a binary extension to a front-end PowerShell module. However, it doesn't return the information I expect. I am building the Parithon.Test.Vault.Extension using netstandard2.0.
Prerequisites
Steps to reproduce
I'm attempting to learn how to develop a vault using a binary extension to a front-end PowerShell module. However, it doesn't return the information I expect. I am building the Parithon.Test.Vault.Extension using netstandard2.0.
.\build.ps1
Register-TestVault -Name <name>
Get-SecretInfo -Verbose
Expected behavior
When running `Get-SecretInfo` I expect two objects to returned
Actual behavior
I see my verbose messages logged to the console, but no objects are returned.
Error details
No response
Environment data
Version
NA
Visuals
PS > Get-SecretInfo -Verbose
VERBOSE: Invoking command Get-SecretInfo on module Parithon.Test.Vault.Extension
VERBOSE: Sending: {"Name":"MySecret","Type":"Hashtable","VaultName":"Test","Metadata":{}}
VERBOSE: Sending: {"Name":"MySecret2","Type":"PSCredential","VaultName":"Test","Metadata":{"Description":"Some description about this secret.","Alt":"Message"}}
VERBOSE: EndProcessing
VERBOSE: Secret information was successfully retrieved from vault Test.
PS >
The text was updated successfully, but these errors were encountered: