The Azure cloud module is used to control access to Microsoft Azure
Use of this module only requires the apikey parameter. Set up the cloud
configuration at /etc/salt/cloud.providers or
/etc/salt/cloud.providers.d/azure.conf:
my-azure-config:
provider: azure
subscription_id: 3287abc8-f98a-c678-3bde-326766fd3617
certificate_path: /etc/salt/azure.pem
Information on creating the pem file to use, and uploading the associated cer file can be found at:
http://www.windowsazure.com/en-us/develop/python/how-to-guides/service-management/
salt.cloud.clouds.msazure.avail_images(conn=None, call=None)¶List available images for Azure
salt.cloud.clouds.msazure.avail_locations(conn=None, call=None)¶List available locations for Azure
salt.cloud.clouds.msazure.avail_sizes(call=None)¶Because sizes are built into images with Azure, there will be no sizes to return here
salt.cloud.clouds.msazure.create(vm_)¶Create a single VM from a data dict
salt.cloud.clouds.msazure.destroy(name, conn=None, call=None)¶Destroy a VM
salt.cloud.clouds.msazure.get_configured_provider()¶Return the first configured instance.
salt.cloud.clouds.msazure.get_conn()¶Return a conn object for the passed VM data
salt.cloud.clouds.msazure.list_disks(conn=None, call=None)¶Destroy a VM
salt.cloud.clouds.msazure.list_hosted_services(conn=None, call=None)¶List VMs on this Azure account, with full information
salt.cloud.clouds.msazure.list_nodes(conn=None, call=None)¶List VMs on this Azure account
salt.cloud.clouds.msazure.list_nodes_full(conn=None, call=None)¶List VMs on this Azure account, with full information
salt.cloud.clouds.msazure.list_nodes_select(conn=None, call=None)¶Return a list of the VMs that are on the provider, with select fields
salt.cloud.clouds.msazure.list_storage_services(conn=None, call=None)¶List VMs on this Azure account, with full information
salt.cloud.clouds.msazure.script(vm_)¶Return the script deployment object
salt.cloud.clouds.msazure.show_instance(name, call=None)¶Show the details from the provider concerning an instance
Current Salt release: 2014.1.7
Docs for previous releases on salt.rtfd.org.