WebApp is an App service provided by Azure Cloud for hosting your application. It supports .NET, .NET core, Java, PHP, Python, Ruby and NodeJS. It is a fully managed Platform as a Serice (PaaS) where developers can deploy mobile or web applications in Azure Cloud in matter of seconds.
With App Service, you pay for the Azure compute resources you use. The compute resources you use are determined by the App Service plan that you run your apps on. We will provision WebApp in Azure cloud using Terraform.
Hashicorp's Terraform is an open-source tool for provisioning and managing cloud infrastructure. Terraform can provision resources on any cloud platform.
Terraform allows you to create infrastructure in configuration files(tf files) that describe the topology of cloud resources. These resources include virtual machines, storage accounts, and networking interfaces. The Terraform CLI provides a simple mechanism to deploy and version the configuration files to Azure.
Watch the steps in YouTube:
Advantages of using Terraform:
- Reduce manual human errors while deploying and managing infrastructure.
- Deploys the same template multiple times to create identical development, test, and production environments.
- Reduces the cost of development and test environments by creating them on-demand.
How to Authenticate with Azure?
Terraform can authenticate with Azure in many ways, in this example we will use Azure CLI to authenticate with Azure and then we will create resources using Terraform.
Pre-requisites:
Azure CLI needs to be installed.
Terraform needs to be installed.
Logging into the Azure CLI
Login to the Azure CLI using:
az login
The above command will open the browser and will ask your Microsoft account details. Once you logged in, you can see the account info by executing below command:
az account list
Now create a directory to store Terraform files.
mkdir azure-terraform
cd azure-terraform
Let's create a terraform file to use azure provider. To configure Terraform to use the Default Subscription defined in the Azure CLI, use the below cod.
sudo vi azure.tf
terraform {
required_providers {
azurerm = {
source = "hashicorp/azurerm"
version = "=3.38.0"
}
}
}
# Configure the Microsoft Azure Provider
provider "azurerm" {
features {}
}
Now initialize the working directory
Perform the below command:
terraform init
Once directory is initialized, you can start writing code for setting up the infrastructure.
Create WebApp(App Service) using Terraform script
sudo vi create-app-svc.tf
# Create a resource group
resource "azurerm_resource_group" "dev-rg" {
name = "dev-environment-rg"
location = "South Central US"
}
# Create app service plan
resource "azurerm_app_service_plan" "service-plan" {
name = "simple-service-plan"
location = azurerm_resource_group.dev-rg.location
resource_group_name = azurerm_resource_group.dev-rg.name
kind = "Linux"
reserved = true
sku {
tier = "Standard"
size = "S1"
}
tags = {
environment = "dev"
}
}
# Create JAVA app service
resource "azurerm_app_service" "app-service" {
name = "my-awesome-app-svc"
location = azurerm_resource_group.dev-rg.location
resource_group_name = azurerm_resource_group.dev-rg.name
app_service_plan_id = azurerm_app_service_plan.service-plan.id
site_config {
linux_fx_version = "TOMCAT|8.5-java11"
}
tags = {
environment = "dev"
}
}
Now Perform the below command to validate terraform files.
terraform validate
perform plan command to see how many resources will be created.
terraform plan
terraform applyDo you want to perform these actions?
type yes