#
Create a Network Interface Card (NIC) in Azure
This tutorial explains how we can create a Network Interface Card (NIC) in Azure using Terraform.
A Network Interface Card (NIC) connects a Virtual Machine to the underlying software network. One or more network interface cards (NICs) could be attached to an Azure Virtual Machine (VM). Azure can assign any NIC for one or more static or dynamic public and private IP addresses.
Here are the steps to follow in order to deploy a Network Interface Card (NIC) in Azure using Terraform:
1) Create a folder where we keep our project
To be well organized we need to create a folder where we keep our project.
In my case this is D:\terraform\azure\nic
.
2) Create the configuration file
Now is the time to tell Terraform what to do.
We create main.tf file with the following content:
#Set the Azure Provider source and version being used
#----------------------------------------------------
terraform {
required_providers {
azurerm = {
source = "hashicorp/azurerm"
version = "=3.0.1"
}
}
}
# Configure the Microsoft Azure Provider
#---------------------------------------
provider "azurerm" {
features {}
}
#############################################
# Create NICs (Network Interface Cards) #
##################################################
resource "azurerm_network_interface" "master1-nic" {
name = "master1-nic"
location = "West Europe"
resource_group_name = "my-new-resource-group"
ip_configuration {
name = "master1-pub-ip"
subnet_id = "/subscriptions/69045ea7-6500-45f7-adc6-b4c86ce7233b/resourceGroups/my-new-resource-group/providers/Microsoft.Network/virtualNetworks/my-vnet/subnets/engrap-subnet-mid"
private_ip_address_allocation = "Dynamic"
public_ip_address_id = "/subscriptions/69045ea7-6500-45f7-adc6-b4c86ce7233b/resourceGroups/my-new-resource-group/providers/Microsoft.Network/publicIPAddresses/master1-pub-ip"
}
tags = {
environment = "Dev"
}
}
You can use the az network vnet subnet list --vnet-name my-vnet -g my-new-resource-group
command
to get the ID of a Subnet.
You can use the az network public-ip list
command to get the ID of a public IP.
Info
When Terraform is used, generally we create the Subnet and the Address IP in the same script, and we can reference their ID using the "." notation. You can take a look at Create a Virtual NET in Azure
So, we configure the provider and a Network Security Group (NSG) for Azure.
3) Initialize the project
Run the terraform init
command to initialize a working directory that contains a Terraform configuration.
This command is run under the working/project directory.
terraform init
You will see the following in your console:
Initializing the backend...
Initializing provider plugins...
- Finding hashicorp/azurerm versions matching "3.0.1"...
- Installing hashicorp/azurerm v3.0.1...
- Installed hashicorp/azurerm v3.0.1 (signed by HashiCorp)
Terraform has created a lock file .terraform.lock.hcl to record the provider
selections it made above. Include this file in your version control repository
so that Terraform can guarantee to make the same selections by default when
you run "terraform init" in the future.
Terraform has been successfully initialized!
You may now begin working with Terraform. Try running "terraform plan" to see
any changes that are required for your infrastructure. All Terraform commands
should now work.
If you ever set or change modules or backend configuration for Terraform,
rerun this command to reinitialize your working directory. If you forget, other
commands will detect it and remind you to do so if necessary.
Info
This is the first command that should be run after writing a new Terraform configuration or cloning an existing one from version control. It is safe to run this command multiple times.
4) Login to the Azure account we work with using Azure CLI
az login
You will be prompted to login from the browser. Once the username/password are verified, you are connected to Azure in the console.
Run the following command and change the subscription name if you are using multiple subscriptions:
az account set --subscription "MyAzureSubscription1"
5) Create the Virtual NET in Azure
Now it is the time to create a Resource Group and a Virtual NET in Azure and this is done very simple using the following command:
terraform apply
Info
If the Resource Group, the VNet and the Subnet are already created we don't need to create it with this Terraform script.
You can see the result on the screen:
Terraform used the selected providers to generate the following execution plan. Resource actions are indicated with the
following symbols:
+ create
Terraform will perform the following actions:
# azurerm_network_interface.master1-nic will be created
+ resource "azurerm_network_interface" "master1-nic" {
+ applied_dns_servers = (known after apply)
+ dns_servers = (known after apply)
+ enable_accelerated_networking = false
+ enable_ip_forwarding = false
+ id = (known after apply)
+ internal_dns_name_label = (known after apply)
+ internal_domain_name_suffix = (known after apply)
+ location = "westeurope"
+ mac_address = (known after apply)
+ name = "master1-nic"
+ private_ip_address = (known after apply)
+ private_ip_addresses = (known after apply)
+ resource_group_name = "my-new-resource-group"
+ tags = {
+ "environment" = "Dev"
}
+ virtual_machine_id = (known after apply)
+ ip_configuration {
+ gateway_load_balancer_frontend_ip_configuration_id = (known after apply)
+ name = "master1-pub-ip"
+ primary = (known after apply)
+ private_ip_address = (known after apply)
+ private_ip_address_allocation = "Dynamic"
+ private_ip_address_version = "IPv4"
+ public_ip_address_id = "/subscriptions/69045ea7-6500-45f7-adc6-b4c86ce7233b/resourceGroups/my-new-resource-group/providers/Microsoft.Network/publicIPAddresses/master1-pub-ip"
+ subnet_id = "/subscriptions/69045ea7-6500-45f7-adc6-b4c86ce7233b/resourceGroups/my-new-resource-group/providers/Microsoft.Network/virtualNetworks/my-vnet/subnets/engrap-subnet-mid"
}
}
Plan: 1 to add, 0 to change, 0 to destroy.
Do you want to perform these actions?
Terraform will perform the actions described above.
Only 'yes' will be accepted to approve.
Enter a value: yes
azurerm_network_interface.master1-nic: Creating...
azurerm_network_interface.master1-nic: Creation complete after 1s [id=/subscriptions/69045ea7-6500-45f7-adc6-b4c86ce7233b/resourceGroups/my-new-resource-group/providers/Microsoft.Network/networkInterfaces/master1-nic]
Apply complete! Resources: 1 added, 0 changed, 0 destroyed.
If you run terraform apply
again you will see the following :
azurerm_network_interface.master1-nic: Refreshing state... [id=/subscriptions/69045ea7-6500-45f7-adc6-b4c86ce7233b/resourceGroups/my-new-resource-group/providers/Microsoft.Network/networkInterfaces/master1-nic]
No changes. Your infrastructure matches the configuration.
Terraform has compared your real infrastructure against your configuration and found no differences, so no changes are
needed.
Apply complete! Resources: 0 added, 0 changed, 0 destroyed.
That means terraform apply
command is idempotent.
Info
Terraform works with 2 main files:
- the
configuration file
(main.tf, in my case) : declares what we want to have in Azure - the
state file
(terraform.tfstate) which keeps what we have in Azure.
terraform apply
command "synchronize" what we have configuration file with what we have in Azure.