Manipulate Entires in Azure Vault
Name | Type | Description |
---|---|---|
tenant_id |
string | |
client_id |
string | |
client_secret |
string | |
vault_url |
string |
Name | Type | Description |
---|---|---|
name |
string | |
value |
string |
Given the following configuration:
Component-wide configuration as config.json
:
{
"tenant_id": "XXX",
"client_id": "XXX",
"client_secret": "XXX",
"vault_url": "XXX"
}
$ wick invoke common/azurevault:0.2.0 create_secret [email protected] -- --name="XXX"--value="XXX"
Or with inline configuration:
$ wick invoke common/azurevault:0.2.0 create_secret \
--with='{ "tenant_id":"XXX","client_id":"XXX","client_secret":"XXX","vault_url":"XXX" }' \
-- --name="XXX"--value="XXX"
Name | Type | Description |
---|---|---|
name |
string |
Given the following configuration:
Component-wide configuration as config.json
:
{
"tenant_id": "XXX",
"client_id": "XXX",
"client_secret": "XXX",
"vault_url": "XXX"
}
$ wick invoke common/azurevault:0.2.0 delete_secret [email protected] -- --name="XXX"
Or with inline configuration:
$ wick invoke common/azurevault:0.2.0 delete_secret \
--with='{ "tenant_id":"XXX","client_id":"XXX","client_secret":"XXX","vault_url":"XXX" }' \
-- --name="XXX"
Name | Type | Description |
---|---|---|
name |
string |
Given the following configuration:
Component-wide configuration as config.json
:
{
"tenant_id": "XXX",
"client_id": "XXX",
"client_secret": "XXX",
"vault_url": "XXX"
}
$ wick invoke common/azurevault:0.2.0 purge_secret [email protected] -- --name="XXX"
Or with inline configuration:
$ wick invoke common/azurevault:0.2.0 purge_secret \
--with='{ "tenant_id":"XXX","client_id":"XXX","client_secret":"XXX","vault_url":"XXX" }' \
-- --name="XXX"