merge_certificates
Creates, updates, deletes, gets or lists a merge_certificates resource.
Overview
| Name | merge_certificates |
| Type | Resource |
| Id | azure.key_vault_certificates.merge_certificates |
Fields
The following fields are returned by SELECT queries:
SELECT not supported for this resource, use SHOW METHODS to view available operations for the resource.
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
merge_certificate | exec | certificate_name, vault_name, x5c | Merges a certificate or a certificate chain with a key pair existing on the server. The MergeCertificate operation performs the merging of a certificate or certificate chain with a key pair currently available in the service. This operation requires the certificates/create permission. |
Parameters
Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.
| Name | Datatype | Description |
|---|---|---|
certificate_name | string | The name of the certificate. Required. |
vault_name | string | Key vault name. (default: ) |
Lifecycle Methods
- merge_certificate
Merges a certificate or a certificate chain with a key pair existing on the server. The MergeCertificate operation performs the merging of a certificate or certificate chain with a key pair currently available in the service. This operation requires the certificates/create permission.
EXEC azure.key_vault_certificates.merge_certificates.merge_certificate
@certificate_name='{{ certificate_name }}' --required,
@vault_name='{{ vault_name }}' --required
@@json=
'{
"x5c": "{{ x5c }}",
"attributes": "{{ attributes }}",
"tags": "{{ tags }}"
}'
;