Skip to content

allAzureEncryptionKeys

List of all Encryption Keys in an Azure Key Vault.

Arguments

Argument Type Description
azureEncryptionKeysInput (required) AzureEncryptionKeysInput! Input for fetching Encryption Keys in an Azure Key Vault.

Returns

[AzureEncryptionKey!]!

Sample

query AllAzureEncryptionKeys($azureEncryptionKeysInput: AzureEncryptionKeysInput!) {
  allAzureEncryptionKeys(azureEncryptionKeysInput: $azureEncryptionKeysInput) {
    keyName
  }
}
{
  "azureEncryptionKeysInput": {
    "cloudAccountId": "00000000-0000-0000-0000-000000000000",
    "keyVaultName": "example-string",
    "resourceGroupName": "example-string"
  }
}
{
  "data": {
    "allAzureEncryptionKeys": [
      {
        "keyName": "example-string"
      }
    ]
  }
}