Skip to content

Instantly share code, notes, and snippets.

@weeyin83
Created April 29, 2025 09:20
Show Gist options
  • Save weeyin83/8cfcfc8eea540b82424b7d4bcca47c74 to your computer and use it in GitHub Desktop.
Save weeyin83/8cfcfc8eea540b82424b7d4bcca47c74 to your computer and use it in GitHub Desktop.
resource "azurerm_resource_group" "example" {
name = "rg-example"
location = "UK South"
}
resource "azurerm_virtual_network" "example" {
name = "networking"
resource_group_name = azurerm_resource_group.example.name
location = azurerm_resource_group.example.location
address_space = ["10.0.0.0/16"]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment