Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
Sean Carolan committed Nov 14, 2018
2 parents d2f67ec + 1b8099a commit 40ae75a
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 9 deletions.
4 changes: 1 addition & 3 deletions files/setup.sh
Expand Up @@ -15,6 +15,4 @@ cat << EOM > /var/www/html/index.html
</html>
EOM

echo "Your demo is now ready."


echo "Your demo is now ready."
12 changes: 6 additions & 6 deletions main.tf
@@ -1,13 +1,13 @@
##############################################################################
# HashiCorp Beginner's Guide to Using Terraform on Azure
# * HashiCorp Beginner's Guide to Using Terraform on Azure
#
# This Terraform configuration will create the following:
#
# * Resource group with a virtual network and subnet
# * An Ubuntu Linux server running Apache
# Resource group with a virtual network and subnet
# An Ubuntu Linux server running Apache

##############################################################################
# Shared infrastructure resources
# * Shared infrastructure resources

# First we'll create a resource group. In Azure every resource belongs to a
# resource group. Think of it as a container to hold all your resources.
Expand Down Expand Up @@ -44,7 +44,7 @@ resource "azurerm_subnet" "subnet" {
}

##############################################################################
# Build an Ubuntu 16.04 Linux VM
# * Build an Ubuntu 16.04 Linux VM
#
# Now that we have a network, we'll deploy an Ubuntu 16.04 Linux server.
# An Azure Virtual Machine has several components. In this example we'll build
Expand Down Expand Up @@ -177,7 +177,7 @@ resource "azurerm_virtual_machine" "site" {
}

##############################################################################
# Azure MySQL Database
# * Azure MySQL Database

# Terraform can build any type of infrastructure, not just virtual machines.
# Azure offers managed MySQL database servers and a whole host of other
Expand Down

0 comments on commit 40ae75a

Please sign in to comment.