diff --git a/website/source/docs/providers/azurerm/r/virtual_network.html.markdown b/website/source/docs/providers/azurerm/r/virtual_network.html.markdown index 4e8b87175..ec04a70f7 100644 --- a/website/source/docs/providers/azurerm/r/virtual_network.html.markdown +++ b/website/source/docs/providers/azurerm/r/virtual_network.html.markdown @@ -34,6 +34,7 @@ resource "azurerm_virtual_network" "test" { subnet { name = "subnet3" address_prefix = "10.0.3.0/24" + security_group = "${azurerm_network_security_group.test.id}" } tags { @@ -73,7 +74,7 @@ The `subnet` block supports: * `address_prefix` - (Required) The address prefix to use for the subnet. * `security_group` - (Optional) The Network Security Group to associate with - the subnet. + the subnet. (Referenced by `id`, ie. `azurerm_network_security_group.test.id`) ## Attributes Reference @@ -88,4 +89,4 @@ Virtual Networks can be imported using the `resource id`, e.g. ``` terraform import azurerm_virtual_network.testNetwork /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mygroup1/providers/Microsoft.Network/virtualNetworks/myvnet1 -``` \ No newline at end of file +```