Download the PHP package keboola/azure-key-vault-client without Composer
On this page you can find all versions of the php package keboola/azure-key-vault-client. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Informations about the package azure-key-vault-client
Azure Key Vault PHP Client

PHP client for Azure Key Vault.
Supports the following authentication methods:
- Client credentials supplied in
AZURE_TENANT_ID
,AZURE_CLIENT_ID
andAZURE_CLIENT_SECRET
environment variables - Managed identity picked automatically if client credentials not specified and Azure Instance Metadata is available.
Only key encrypt and decrypt methods are currently implemented.
Installation
composer require keboola/azure-key-vault-client
Usage
Create client instance and encrypt data:
Development
Run tests with:
docker compose run --rm testsXX
where XX is PHP version (56 - 74), e.g.:
docker compose run --rm tests70
Resources Setup
Create a resource group:
az group create --name testing-azure-key-vault-php-client --location "East US"
Create a service principal:
az ad sp create-for-rbac --name testing-azure-key-vault-php-client
Use the response to set values TEST_CLIENT_ID
, TEST_CLIENT_SECRET
and TEST_TENANT_ID
in the .env.
file:
Get ID of the service principal:
az ad sp list --filter "displayname eq 'testing-azure-key-vault-php-client'" --query [].objectId
Get ID of a group to which the current user belongs (e.g. "Developers"):
az ad group list --filter "displayname eq 'Developers'" --query [].objectId
Deploy the key vault, provide tentant ID, service principal ID and group ID from the previous commands:
az deployment group create --resource-group testing-azure-key-vault-php-client --template-file arm-template.json --parameters vault_name=testing-key-vault-client tenant_id=9b85ee6f-xxxxxxxxxxxxxxxxxxxxxxxxxxx service_principal_object_id=7f7a8a4c-xxxxxxxxxxxxxxxxxxxxxxxxxxx group_object_id=a1e8da73-xxxxxxxxxxxxxxxxxxxxxxxxxxx
Create key:
az keyvault key create --name test-key --vault-name testing-key-vault-client --query key.kid
returns e.g. https://testing-key-vault-client.vault.azure.net/keys/test-key/b7c28xxxxxxxxxxxxxxxxxxxxxxxxxxx
, use this to set values in .env
file:
TEST_KEY_VAULT_URL
- https://testing-key-vault-client.vault.azure.netTEST_KEY_NAME
- test-keyTEST_KEY_VERSION
- b7c28xxxxxxxxxxxxxxxxxxxxxxxxxxx
License
MIT licensed, see LICENSE file.
All versions of azure-key-vault-client with dependencies
ext-json Version *
guzzlehttp/guzzle Version ^7.5
psr/log Version ^1.1
symfony/config Version ^5.0|^6.0
symfony/validator Version ^5.0|^6.0