library
turbot/azure
Get Involved
Version
Pipeline: Set Key Vault Key Attributes
Set attributes for a key in the specified Azure Key Vault.
Run the pipeline
To run this pipeline from your terminal:
flowpipe pipeline run azure.pipeline.set_key_vault_key_attributes \ --arg 'subscription_id=<string>' \ --arg 'vault_name=<string>' \ --arg 'key_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_key_attributes args = { subscription_id = <string> vault_name = <string> key_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. | - |
key_name | string | Yes | The name of the key in the key vault. | - |
expires | string | Yes | The expiry date and time for the key in the format Y-m-d'T'H:M:S'Z'. | - |
Outputs
Name | Description |
---|---|
key_attributes | The updated key attributes. |