8 lines
349 B
PowerShell
Executable File
8 lines
349 B
PowerShell
Executable File
# Populate our test secrets
|
|
Write-Output "🔐 Populating test secrets:"
|
|
& "./vault.exe" vault kv put "${env:TEST_VAULT_KEY}" data="${env:TEST_VAULT_VALUE}"
|
|
|
|
# Populate our test transit backend with key
|
|
Write-Output "🔐 Populating test transit backend:"
|
|
& "./vault.exe" vault secrets enable transit
|
|
& "./vault.exe" vault write -f transit/keys/test |