Skip to content

Instantly share code, notes, and snippets.

@imartinflores
Created June 30, 2023 14:47
Show Gist options
  • Save imartinflores/ba6163e02db92076fa12d1031b9176e0 to your computer and use it in GitHub Desktop.
Save imartinflores/ba6163e02db92076fa12d1031b9176e0 to your computer and use it in GitHub Desktop.
resource "azurerm_network_interface" "networkinterfacename" {
name = "${var.resource_group_name}-department-nic"
location = var.vm_location
resource_group_name = var.resource_group_name
ip_configuration {
name = "${var.resource_group_name}-department-IpConfig"
subnet_id = azurerm_subnet.subnetname.id
private_ip_address_allocation = "Dynamic"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment