Microsoft Azure Automation

Automation within Microsoft Azure? Yes it’s real. Last week during the Microsoft Build conference Azure Automation was announced. Azure Automation allows you to do the following:

Azure Automation allows you to automate the creation, deployment, monitoring, and maintenance of resources in your Azure environment using a highly scalable and reliable workflow execution engine. Orchestrate time-consuming and frequently repeated tasks across Azure and third-party systems to decrease time to value for your cloud operations.

Source: https://azure.microsoft.com/en-us/services/automation/

I’ll walk through creating an automation runbook that pulls IP information from a virtual machine running in Microsoft Azure.

ASSUMPTIONS

LET’S GET STARTED

Login into your Microsoft Azure subscription and select AUTOMATION from the menu on the left:

clip_image002

From the menu at the bottom of the page, select CREATE. This will start the automation account creation process where the runbooks will be stored:

clip_image003

Give the automation account a name and select the check mark to complete:

clip_image005

Once an automation account has been created select it from the screen:

clip_image007

Select the runbook you created, mine is called “remotePScommand”, then select AUTHOR and then DRAFT:

clip_image009

Now we’re ready create or import automation scripts, I’ll need to use the following scripts first for my automation runbook to work properly:

I’ll manually add the remote PowerShell command runbook for demonstration purposes in a later step.

To import scripts select RUNBOOKS at the top of the page, once there, select IMPORT at the bottom of the page:

clip_image011

Select one of the scripts previously downloaded from the links above, then select the check mark to start the import (import both scripts):

clip_image013

Once the imports are completed you will see them on the RUNBOOKS page:

clip_image015

Note: select each runbook and publish them as is under the AUTHORING page.

Alternatively, we can manually create runbooks. I’ll show how I completed the manual creation of a script next.

MANUALLY CREATING RUNBOOKS

Copy the code from the following runbook: https://gallery.technet.microsoft.com/scriptcenter/How-to-Use-a-PowerShell-59b2e28c

Now I’ll manually create a runbook instead of importing:

Select NEW at the bottom of the page, APP SERVICES, AUTOMATION, and RUNBOOK:

clip_image017

Finally, select QUICK CREATE and fill out the required boxes with information and select CREATE:

clip_image019

After the runbook is created, select RUNBOOKS from the portal to view all runbooks. The ones I imported and manually created are in the list:

clip_image021

Note: I changed the name slightly for my runbook

Now I’ll select “remotePScommand” runbook and then select AUTHOR from the top of the page and I’m put in DRAFT mode:

clip_image023

I’ll now paste the script code I copied in a previous step:

clip_image025

Note, the name of the script must match the workflow parameter name (feel free to change the name in the script to match the name of the runbook if needed as it won’t affect how it runs):

clip_image027

Before we move on, let’s summarize what we’ve completed so far:

  1. Created an automation account to store runbooks.
  2. Imported two runbooks (Connect-Azure & Connect-AzureVM) under the automation account.
  3. Manually created a runbook under the same automation account.
  4. Copied and pasted code into the manually created runbook.

Now we have to connect all the pieces together. Within the “remotePScommand” runbook you’ll see that there are a number of parameters that need information fed into them when the runbook is launched. Parameters can be called or manually entered when the runbook is launched. Some parameters are in the form of ASSETS.

Let’s take a look at what ASSETS are and how they’re used.

From the automation account portal select ASSETS:

clip_image029

At the bottom of the page select ADD SETTING:

clip_image030

Here we see several types of settings that can be consumed by runbooks:

clip_image032

ADD CONNECTION: To create a specific connection setting, you must import an integration module that contains the connection type definition.

ADD CREDENTIAL: Two types of credentials are available by default: Certificate and Windows PowerShell Credential.

ADD VARIABLE: the list below shows the list of available default variables:

clip_image033

ADD SCHEDULE: schedule your runbooks to run at on specific days and times.

clip_image035

Let’s get back to the runbook where I’ll run a PowerShell command on an Azure VM.

I’ve defined a couple assets that I’ll reference when I launch the “remotePScommand” runbook.

The “Internal Subscription” is a connection to my Azure subscription and the “adminaccount” contains the administrator credentials that my Azure VM is configured to use for login:

clip_image036

EXECUTING A RUNBOOK

To test the runbook I created, I’ll navigate back to runbooks and select “remotePScommand”:

clip_image038

Then I'll select AUTHOR and DRAFT:

clip_image040

Now I’ll select TEST at the bottom of the page:

clip_image041

The following prompt is where we’ll use ASSETS as well as fill out other parameters:

clip_image043

After the runbooks executes, here is the final output it displays:

clip_image045

If you followed the steps above and created a similar automation runbook in Azure, Congratulations! If not, get started with Microsoft Azure Automation today.

ADDITIONAL RESOURCES

Azure Automation Overview:

https://msdn.microsoft.com/library/azure/dn643629.aspx

Sample Azure Automation Scripts:

https://gallery.technet.microsoft.com/scriptcenter/site/search?f[0].Type=User&f[0].Value=SC%20Automation%20Product%20Team&f[0].Text=SC%20Automation%20Product%20Team&f[1].Type=RootCategory&f[1].Value=WindowsAzure&f[1].Text=Windows%20Azure