Skip to content

Instantly share code, notes, and snippets.

@imartinflores
Created June 30, 2023 14:46
Show Gist options
  • Save imartinflores/5cf061ddb2791a333d10b19989196d27 to your computer and use it in GitHub Desktop.
Save imartinflores/5cf061ddb2791a333d10b19989196d27 to your computer and use it in GitHub Desktop.
resource "azurerm_subnet" "subnetname" {
name = "${var.resource_group_name}-deparment-subnet"
resource_group_name = var.resource_group_name
virtual_network_name = azurerm_virtual_network.qanetwork.name
address_prefixes = ["addressprefix/port"]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment