AzureCredentials
AzureCredentials allows you to store, modify, or delete your encrypted Azure connection string
Choose either the store or delete functionality
General Usage
usage: AzureCredentials [-h] {store,delete} ...
Set, modify, or delete Azure storage credentials
optional arguments:
  -h, --help      show this help message and exit
Available functionality:
  {store,delete}
    store         Store or update Azure storage credentials
    delete        Delete Azure storage credentials
Azure credentials store
Store or modify your account name and connection string
Required arguments:
- account name
Optional arguments:
- verbosity: set the logging level. Options are debug,info,warning,error,critical. Default is info
Example commands:
To store the account name account_name and your connection string
AzureCredentials store -a account_name
NOTE: You will be prompted to enter your connection string by the script. Note that, as a security precaution, you will not see the text you entered.
Usage
usage: AzureCredentials store [-h] -a ACCOUNT_NAME [-v VERBOSITY]
Store or update Azure storage credentials
optional arguments:
  -h, --help            show this help message and exit
  -a ACCOUNT_NAME, --account_name ACCOUNT_NAME
                        Name of the Azure storage account
  -v VERBOSITY, --verbosity VERBOSITY
                        Set the logging level. Options are debug, info, warning, error, and critical. Default is info.
Azure credentials delete
Delete encrypted connection string
Required arguments:
- account name
Optional arguments:
- verbosity: set the logging level. Options are debug,info,warning,error,critical. Default is info
Example command:
To delete connection string associated with the account name account_name 
AzureCredentials delete -a account_name
NOTE: You will be prompted to enter your connection string by the script. Note that, as a security precaution, you will not see the text you entered.
Usage
usage: AzureCredentials delete [-h] -a ACCOUNT_NAME [-v VERBOSITY]
Delete Azure storage credentials
optional arguments:
  -h, --help            show this help message and exit
  -a ACCOUNT_NAME, --account_name ACCOUNT_NAME
                        Name of the Azure storage account
  -v VERBOSITY, --verbosity VERBOSITY
                        Set the logging level. Options are debug, info, warning, error, and critical. Default is info.