Custom module to retrieve account keys for Azure Storage account.
In a lot of automation scenarios there is need to create a new storage account and pass on the ‘key’ to subsequent tasks. Currently, there is no azure module that retrieves the keys. The way around is to run a powershell command or make a call to the ARM REST api.
This modules demonstrates how to create a custom module for Ansible.
Demostrates how to create a custom module for ansible using the standard Ansible module structure New module development.
This implementation follows the same pattern as other Azure modules built for Ansible. It uses base functionality of azure_rm_common.py to handle common functionality like authentication, error handling, exceptions and instantiation of resource clients.