-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSyncAzKeyVaultWithUserSecrets.psd1
More file actions
30 lines (27 loc) · 1.09 KB
/
SyncAzKeyVaultWithUserSecrets.psd1
File metadata and controls
30 lines (27 loc) · 1.09 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
@{
RootModule = 'SyncAzKeyVaultWithUserSecrets.psm1'
ModuleVersion = '0.1.1'
GUID = 'bc878d04-e435-44c4-acd4-60fb3550bd83'
Author = 'Axel M. Kjønsberg'
Description = 'Synchronise Azure Key Vault secrets into the local dotnet user-secrets store. Initializes an interactive process for mapping secrets found in the selected key vault.'
PowerShellVersion = '5.1'
CompatiblePSEditions = @('Desktop', 'Core')
FunctionsToExport = @('Sync-AzKeyVaultWithUserSecrets')
CmdletsToExport = @()
AliasesToExport = @('kv2local')
<#
RequiredModules = @(
'Az.Accounts',
'Az.KeyVault'
)
#>
PrivateData = @{
PSData = @{
Prerelease = 'beta'
Tags = @('Azure', 'KeyVault', 'Secrets', 'dotnet', 'UserSecrets')
LicenseUri = 'https://opensource.org/licenses/MIT'
ProjectUri = 'https://github.com/axelkjonsberg/SyncAzKeyVaultWithUserSecrets'
ReleaseNotes = 'Initial (beta) release'
}
}
}