Open
Description
Not sure if this is a bug or something I'm missing in the documentation. I want to store a plaintext secret. I think I can do that base on the help. So I start with this:
$plain = "FooBar123"
Set-Secret -Name plain -Secret $plain -Vault jhvault
It looks like a string.
PS C:\> get-secretinfo -Name plain Name Type VaultName
---- ---- ---------
plain String jhVault
But if I run Get-Secret plain
I get a secure string result. Using get-secret plain -AsPlainText
gets me the value but I don't think I should have to take this extra step. I have other secrets that were entered as secure strings and those show up that way with Get-SecretInfo. But anything I stored in plaintext appears to be stored as a secure string. Have I missed something?