Created
April 29, 2025 09:20
-
-
Save weeyin83/8cfcfc8eea540b82424b7d4bcca47c74 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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