library
turbot/azure
OverviewPipelines
0
Triggers
0
Variables
GitHub

Set Key Vault Secret Attributes

Set attributes for a secret in the specified Azure Key Vault.

Run the pipeline

To run this pipeline from your terminal:

flowpipe pipeline run azure.pipeline.set_key_vault_secret_attributes \
--arg 'subscription_id=<string>' \
--arg 'vault_name=<string>' \
--arg 'secret_name=<string>' \
--arg 'expires=<string>'

Use this pipeline

To call this pipeline from your pipeline, use a step:

step "pipeline" "step_name" {
pipeline = azure.pipeline.set_key_vault_secret_attributes
args = {
subscription_id = <string>
vault_name = <string>
secret_name = <string>
expires = <string>
}
}

Params

NameTypeRequiredDescriptionDefault
credstringYesName for credentials to use. If not provided, the default credentials will be used.default
subscription_idstringYesAzure Subscription Id. Examples: d46d7416-f95f-4771-bbb5-529d4c766.-
vault_namestringYesThe Azure Key Vault name.-
secret_namestringYesThe name of the secret in the key vault.-
expiresstringYesThe expiry date and time for the secret in the format Y-m-d'T'H:M:S'Z'.-

Outputs

NameDescription
secret_attributesThe updated secret attributes.