Create a secret store.
Request
POST https://{hostname}:{port}
/cli/secretstore/vault/create
Accept: {contentType}
Parameter | Type | Required | Description |
---|---|---|---|
Accept |
|
true |
This command takes a JSON request string or file. Use the following template for the request:
{
"description": "Secret Store description",
"name": "Secret Store name",
"namespace": "Vault Server Namespace (optional)",
"teamMappings": {
"resourceRoleId": "Id of Resource Type to apply to
this team mapping (optional, can specify either this or
resourceRoleLabel",
"resourceRoleLabel": "Name of Resource Type to apply
to this team mapping (optional, can specify either this or
resourceRoleId",
"teamId": "ID of a team, either this field or
teamLabel are needed to specify a team",
"teamLabel": "Name of the team to map the environment
to, either this field or teamId are needed to specify a
team"
},
"type": "vault",
"url": "Vault Server URL"
}
Related CLI command: createVaultSecretStore.