https://github.com/agazoth/axcredentialvault
Gives you a credential object vault in Azure
https://github.com/agazoth/axcredentialvault
Last synced: about 1 year ago
JSON representation
Gives you a credential object vault in Azure
- Host: GitHub
- URL: https://github.com/agazoth/axcredentialvault
- Owner: Agazoth
- License: mit
- Created: 2017-08-19T15:55:46.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2017-09-10T11:03:34.000Z (almost 9 years ago)
- Last Synced: 2025-06-12T13:06:34.012Z (about 1 year ago)
- Language: PowerShell
- Size: 13.7 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
AxCredentialVault
=================
This module lets you create a Password Vault in your Azure subscription for safe keeping and delegation of your credential sets.
Functionality:
* Create a new credential vault in your Azure subscription
* Connect to your credential vault
* Add credential sets to your vault
* Retrieve credential sets from your vault
* Remove credential sets from your vault
#Instructions
```powershell
# One time setup
# Download the repository
# Unblock the zip
# Extract the AxCredentialVault folder to a module path (e.g. $env:USERPROFILE\Documents\WindowsPowerShell\Modules\)
#Simple alternative, if you have PowerShell 5, or the PowerShellGet module:
Install-Module AxCredentialVault
# Import the module.
Import-Module AxCredentialVault #Alternatively, Import-Module \\Path\To\PSExcel
# Get commands in the module
Get-Command -Module AxCredentialVault
# Get help for a command
Get-Help Connect-AzureCredentialVault -Full
```