minkbear/azure-key-vault
Composer 安装命令:
composer require minkbear/azure-key-vault
包简介
Allow secrets to be easily fetched from an Azure Key Vault from within a Laravel application
README 文档
README
Overview
This package allows secrets to be fetched from an
Azure Key Vault,
with an interface similar to env() and config().
Installation
Require this package with composer:
composer require insites-consulting/azure-key-vault
The package should be discovered by Laravel on installation.
The following environment variables must be set, if the package's default configuration is used:
AZURE_AD_CLIENT_IDthe UUID of the service principal which will be used to access the vault. This service principal needs "Get Secret" permission on that vault.AZURE_AD_CLIENT_SECRETthe shared secret for that service principal.AZURE_AD_TENANT_IDthe UUID for the tenant under which that service principal exists.AZURE_KEY_VAULT_NAMEthe name of the key vault (used as a subdomain in its hostname; e.g.fredinfred.vault.azure.net).
This package publishes its configuration to vault.php. This can be done with:
php artisan vendor:publish --provider=InsitesConsulting\AzureKeyVault\ServiceProvider
The configuration entries are as follows:
tenant_idthe tenant UUIDclient_idthe service principal UUIDclient_secretthe service principal shared secretvaultthe vault name
Usage
This package provides a facade called Vault, with two methods
Vault::secret() and Vault::setVault(), as well as a global helper function
secret().
To fetch a secret called 'apikey':
$secret = Vault::secret('apikey');
If the secret does not exist, null will be returned, unless a different
default value is specified, as here:
$other_secret = Vault::secret('otherkey', 'default-value');
If there is an error, an
InsitesConsulting\AzureKeyVault\AzureKeyVaultException will be thrown. Its
message will be set to the body of the error response from Azure, and its
code will be set to the HTTP status of that response.
The global helper function behaves identically to the facade method:
$secret = secret('apikey'); $other_secret = secret('otherkey', 'default-key');
In order to work with multiple vaults, use Vault::setVault() to change the
vault name used:
$secret = secret('apikey'); Vault::setVault('other-vault'); $other_secret = secret('apikey');
This is persistent: the newly set vault will remain until Vault::setVault()
is called again.
Calling Vault::setVault() with no argument will reset the vault name to that
set in the config file:
$other_secret = secret('apikey'); Vault::setVault(); $secret = secret('apikey');
minkbear/azure-key-vault 适用场景与选型建议
minkbear/azure-key-vault 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 389 次下载、GitHub Stars 达 0, 最近一次更新时间为 2022 年 03 月 23 日, 在 PHP 生态内属于活跃度较高的组件。
我们在过去多个企业项目中使用过 minkbear/azure-key-vault 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 minkbear/azure-key-vault 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
统计信息
- 总下载量: 389
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 1
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: proprietary
- 更新时间: 2022-03-23