<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:content="http://purl.org/rss/1.0/modules/content/">
  <channel>
    <title>Azure on The IT Hollow</title>
    <link>https://theithollow.com/categories/azure/</link>
    <description>Recent content in Azure on The IT Hollow</description>
    <generator>Hugo</generator>
    <language>en-us</language>
    <lastBuildDate>Mon, 03 Oct 2016 14:10:32 +0000</lastBuildDate>
    <atom:link href="https://theithollow.com/categories/azure/index.xml" rel="self" type="application/rss+xml" />
    <item>
      <title>Azure Scale Sets</title>
      <link>https://theithollow.com/2016/10/03/azure-scale-sets/</link>
      <pubDate>Mon, 03 Oct 2016 14:10:32 +0000</pubDate>
      <guid>https://theithollow.com/2016/10/03/azure-scale-sets/</guid>
      <description>&lt;p&gt;Azure scale sets are a way to horizontally increase or decrease resources for your applications. Wouldn&amp;rsquo;t it be nice to provision a pair of web servers behind a load balancer, and then add a third or fourth web server once the load hit 75% of capacity? Even better, when the load on those web servers settles down, they could be removed to save you money? This is what an Azure scale set does. Think of the great uses for this; seasonal demand for a shopping site, event promotions that cause a short spike in traffic, or even end of the month data processing tasks could automatically scale out to meet the demand and then scale in to save money when not needed.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Get Started with Azure Automation</title>
      <link>https://theithollow.com/2016/09/19/get-started-azure-automation/</link>
      <pubDate>Mon, 19 Sep 2016 14:15:50 +0000</pubDate>
      <guid>https://theithollow.com/2016/09/19/get-started-azure-automation/</guid>
      <description>&lt;p&gt;Microsoft Azure has a neat way to store and run code right from within Microsoft Azure called &amp;ldquo;Azure Automation&amp;rdquo;. If you&amp;rsquo;re familiar with Amazon&amp;rsquo;s Lambda service, Azure Automation is similar in many ways. The main difference is that in Azure, we&amp;rsquo;re working with PowerShell code instead of Python or Node.js.&lt;/p&gt;
&lt;h1 id=&#34;create-an-azure-automation-account&#34;&gt;Create An Azure Automation Account&lt;/h1&gt;
&lt;p&gt;To get started, the first thing that we need to do is to setup an Azure Automation Account. In your Azure instance, browse for &amp;ldquo;Automation Accounts&amp;rdquo; and then click Add. Give the account a name and a subscription that the PowerShell commands should run under. As with any Azure objects, select a resource group or create your own and then select a location. The last setting is to decide whether or not the account with be an &amp;ldquo;Azure Run As&amp;rdquo; account. If you select &amp;ldquo;Yes&amp;rdquo; then the account will have access to other Azure Resources within your instance. For our examples, this account should be a &amp;ldquo;run as&amp;rdquo; account.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Microsoft Azure Portals</title>
      <link>https://theithollow.com/2016/09/12/microsoft-azure-portals/</link>
      <pubDate>Mon, 12 Sep 2016 14:05:06 +0000</pubDate>
      <guid>https://theithollow.com/2016/09/12/microsoft-azure-portals/</guid>
      <description>&lt;p&gt;If you&amp;rsquo;re getting started with Microsoft Azure, you may feel confused about where things are located. One of the reasons for this confusion is the current use of multiple portals. It&amp;rsquo;s hard enough to learn how subscriptions work, how to access the resources through PowerShell and all of those new concepts without having to navigate different sites. This post should shed some light on what the portals are and how they&amp;rsquo;re used.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Azure Cloud Services</title>
      <link>https://theithollow.com/2016/09/07/azure-cloud-services/</link>
      <pubDate>Wed, 07 Sep 2016 14:00:55 +0000</pubDate>
      <guid>https://theithollow.com/2016/09/07/azure-cloud-services/</guid>
      <description>&lt;p&gt;Azure provides a Platform-as-a-Service offering called a &amp;ldquo;Cloud Service.&amp;rdquo; Instead of managing every part of a virtual machine (the middle-wear and the application) it might be desirable to only worry about the application that is being deployed. An Azure cloud service allows you to just focus on the app, but does give you access to the underlying virtual machine if you need to use it.&lt;/p&gt;
&lt;p&gt;So what makes up an Azure Cloud Service? There are two main types of virtual machines that are deployed through a cloud service; web roles and worker roles. Web roles are Windows servers with IIS installed and ready to use on them. Worker roles are Windows servers without IIS installed. In addition to the Windows instances that will be deployed, a cloud service also includes a load balancer that will automatically load balance the web roles, and an IP Address will be assigned to the load balancer. One thing to note is that the web server roles have an agent installed on them as well so that the load balancer can determine if the server is working correctly and if it needs to remove a server from the load balancer.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Azure Network Interfaces</title>
      <link>https://theithollow.com/2016/09/06/azure-network-interfaces/</link>
      <pubDate>Tue, 06 Sep 2016 14:05:44 +0000</pubDate>
      <guid>https://theithollow.com/2016/09/06/azure-network-interfaces/</guid>
      <description>&lt;p&gt;Azure allows you to manage network interfaces as an object that can be decoupled from the virtual machine. This is important to note, because when you delete your virtual machine, the Network Interface will still be in the Azure Portal. This NIC and all of it&amp;rsquo;s settings will still exist for reuse if you wish. This would include keeping the Public IP Address that is associated with it, subnets, and Network Security Groups.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Deploying Virtual Machines in Microsoft Azure</title>
      <link>https://theithollow.com/2016/08/23/deploying-virtual-machines-microsoft-azure/</link>
      <pubDate>Tue, 23 Aug 2016 14:01:28 +0000</pubDate>
      <guid>https://theithollow.com/2016/08/23/deploying-virtual-machines-microsoft-azure/</guid>
      <description>&lt;p&gt;Congratulations! If you&amp;rsquo;ve made it this far in the &lt;a href=&#34;https://theithollow.com/2016/07/18/guide-getting-started-azure/&#34;&gt;Microsoft Azure Series&lt;/a&gt;, you&amp;rsquo;re finally ready to start deploying virtual machines in Microsoft Azure. Let&amp;rsquo;s face it, the whole series has led up to this post because most of you are probably looking at getting started in Azure with the virtual machine. It&amp;rsquo;s familiar and can house applications, databases, data or whatever you&amp;rsquo;ve been housing in in your on premises data center. If you&amp;rsquo;re trying to benchmark Azure with you&amp;rsquo;re own data center apps, virtual machines are probably where you&amp;rsquo;ll spend your time. As you learn more about the the platform, Azure&amp;rsquo;s PaaS offerings might be more heavily used to prevent you from having to manage those pesky operating systems but for now we&amp;rsquo;re focusing on the VM.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Get Started with Azure PowerShell</title>
      <link>https://theithollow.com/2016/08/15/get-started-azure-powershell/</link>
      <pubDate>Mon, 15 Aug 2016 14:35:02 +0000</pubDate>
      <guid>https://theithollow.com/2016/08/15/get-started-azure-powershell/</guid>
      <description>&lt;p&gt;Microsoft Azure has its own command line that can be used to script installs, export and import configurations and query your portal for information. Being a Microsoft solution, this command line is accessed through PowerShell.&lt;/p&gt;
&lt;h1 id=&#34;install-azure-powershell&#34;&gt;Install Azure PowerShell&lt;/h1&gt;
&lt;p&gt;Using PowerShell with Microsoft Azure is pretty simple to get up and going. The first step to getting started is to install the Azure PowerShell modules. Open up your PowerShell console and run both &amp;ldquo;Install-Module AzureRM&amp;rdquo; and then &amp;ldquo;Install-Module Azure&amp;rdquo;.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Azure Storage Accounts</title>
      <link>https://theithollow.com/2016/08/11/azure-storage-accounts/</link>
      <pubDate>Thu, 11 Aug 2016 14:05:47 +0000</pubDate>
      <guid>https://theithollow.com/2016/08/11/azure-storage-accounts/</guid>
      <description>&lt;p&gt;Azure storage accounts provide a namespace in which to store data objects. These objects could be blobs, file, tables, queues and virtual machine disks. This post focuses on the pieces necessary to create a new storage account for use within Azure Resource Manager portal.&lt;/p&gt;
&lt;h1 id=&#34;setup&#34;&gt;Setup&lt;/h1&gt;
&lt;p&gt;To setup a storage account go to the Azure Resource Manager Portal, select storage accounts and then click the &amp;ldquo;Add&amp;rdquo; button. From there you&amp;rsquo;ll have some familiar settings that will need to be filled out such as a unique name for the account, a subscription to use for billing, a resource group for management, and a location for the region to be used. The rest of this article explains the additional settings shown in the screenshot below.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Create Azure VPN Connection</title>
      <link>https://theithollow.com/2016/08/08/create-azure-vpn-connection/</link>
      <pubDate>Mon, 08 Aug 2016 14:05:37 +0000</pubDate>
      <guid>https://theithollow.com/2016/08/08/create-azure-vpn-connection/</guid>
      <description>&lt;p&gt;Unless you&amp;rsquo;re starting up a company from scratch, you probably won&amp;rsquo;t host all of your workloads in a public cloud like Microsoft Azure. If you&amp;rsquo;re building a hybrid cloud, you probably want to have network connectivity between the two clouds and that means a VPN. Microsoft Azure uses a Virtual Network Gateway to provide this connectivity.&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;NOTE: As of the writing of this blog post, Microsoft has two portals that can be used to provide cloud resources. The Classic portal and the Azure Resource Manager portal. This post focuses on setting up a VPN tunnel using the new Azure Resource Manager portal.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Azure Network Security Groups</title>
      <link>https://theithollow.com/2016/08/03/azure-network-security-groups/</link>
      <pubDate>Wed, 03 Aug 2016 14:05:32 +0000</pubDate>
      <guid>https://theithollow.com/2016/08/03/azure-network-security-groups/</guid>
      <description>&lt;p&gt;An Azure network security group is your one stop shop for access control lists. Azure NSGs are how you will block or allow traffic from entering or exiting your subnets or individual virtual machines. In the new Azure Resource Manager Portal NSGs are applied to either a subnet or a virtual NIC of a virtual machine, and not the entire machine itself.&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;NOTE: At the time of this post, Azure has a pair of Azure portals, including the classic portal where NSGs are applied to a virtual machine, or the Resource Manager Portal where NSGs are applied to a VNic of a virtual machine.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Setup Azure Networks</title>
      <link>https://theithollow.com/2016/08/01/setup-azure-networks/</link>
      <pubDate>Mon, 01 Aug 2016 14:05:16 +0000</pubDate>
      <guid>https://theithollow.com/2016/08/01/setup-azure-networks/</guid>
      <description>&lt;p&gt;Setting up networks in Microsoft Azure is pretty simple task, but care should be taken when deciding how the address space will be carved out. To get started lets cover a couple of concepts about how Azure handles networking. To start we have the idea of a &amp;ldquo;VNet&amp;rdquo; which is the IP space that will be assigned to smaller subnets. These VNets are isolated from each other and the outside world. If you want your VNet to communicate with another VNet or your on-premises networks, you&amp;rsquo;ll need to setup a VPN tunnel. You might be wondering, how do you do any segmentation between servers without having to setup a VPN then? The answer there is using subnets. Multiple subnets can be created inside of a VNet and security groups can be added to them so that they only allow certain traffic, sort of like a firewall does.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Azure Resource Groups</title>
      <link>https://theithollow.com/2016/07/18/azure-resource-groups/</link>
      <pubDate>Mon, 18 Jul 2016 14:05:36 +0000</pubDate>
      <guid>https://theithollow.com/2016/07/18/azure-resource-groups/</guid>
      <description>&lt;p&gt;An Azure resource group is a way for you to, you guessed it, group a set of resources together. This is a useful capability in a public cloud so that you can manage permissions, set alerts, built deployment templates and audit logs on a subset of resources. Resource groups can contain, virtual machines, gateways, VNets, VPNs and about any other resource Azure can deploy.&lt;/p&gt;
&lt;p&gt;Most items that you create will need to belong to a resource group but an item can only belong to a single resource group at a time. Resources can be moved from one resource group to another.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Azure Subscriptions</title>
      <link>https://theithollow.com/2016/07/11/azure-subscriptions/</link>
      <pubDate>Mon, 11 Jul 2016 14:12:30 +0000</pubDate>
      <guid>https://theithollow.com/2016/07/11/azure-subscriptions/</guid>
      <description>&lt;p&gt;Azure is a great reservoir of resources that your organization can use to deploy applications upon and the cloud is focused around pooling resources together. However, organizations need to be able to split resources up based on cost centers. The development team will be using resources for building new apps, as well as maybe an e-commerce team for production uses. Subscriptions allow for a single Azure instance to separate these costs, and bill to different teams.&lt;/p&gt;</description>
    </item>
  </channel>
</rss>
