library
turbot/azure
Get Involved
Version
Pipeline: 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
| Name | Type | Required | Description | Default | 
|---|---|---|---|---|
| conn | connection.azure  | Yes | Name of Azure connection to use. If not provided, the default Azure connection will be used. | connection.azure.default | 
| subscription_id | string  | Yes | Azure Subscription Id. Examples: d46d7416-f95f-4771-bbb5-529d4c766. | - | 
| vault_name | string  | Yes | The Azure Key Vault name. | - | 
| secret_name | string  | Yes | The name of the secret in the key vault. | - | 
| expires | string  | Yes | The expiry date and time for the secret in the format Y-m-d'T'H:M:S'Z'. | - | 
Outputs
| Name | Description | 
|---|---|
| secret_attributes | The updated secret attributes. |