PHP code example of bentaylorwork / azurekeyvault
1. Go to this page and download the library: Download bentaylorwork/azurekeyvault library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
bentaylorwork / azurekeyvault example snippets
use bentaylorwork\azure\authorisation\Token as azureAuthorisation;
use bentaylorwork\azure\keyvault\Secret as keyVaultSecret;
$keyVault = new keyVaultSecret(
[
'accessToken' => azureAuthorisation::getKeyVaultToken(
[
'appTenantDomainName' => 'contoso.onmicrosoft.com',
'clientId' => '00000000-0000-0000-0000-000000000000',
'clientSecret' => '5Ki1PHwjbCuDqPQ2f/AAydhjdfhdsdndks7887jhjhs='
]
),
'keyVaultName' => 'keyVaultName'
]
);
// get the latest value for the secret
var_dump($keyVault->get('T1'));