Azure Administration - Work in progress
This plugin library provides activities for working with Azure Resource Group.
This plugin is in development. Contact us for details.
Getting Started
To Get started, you will need to generate some authentication values for your azure environment.
To do this:
- Setup the Azure CLI
- using az login, login to the appropriate subscription
- run: az ad sp create-for-rbac –name “ElsaAzureAdmin” –role contributor –scopes /subscriptions/xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx –sdk-auth > azureauth.json Where xxx-xxx-xxx is the id of your subscription you want to manage.*
- Create a workflow to talk to Azure
- Use the Create Arm Client Activity using the information from azureauth.json created in step 3 above
- Name this activity
CreateClient
- In each following activity, set the Client Parameter to Javascript and enter the following code:
activities.ClientCreate.Output()
Activities
The following activities are available in this plugin:
Create Client
Creates a new Authenticated client to communicate with Azure
Create Resource Group
Creates a new Resource Group.