Merge pull request #9360 from jcrowthe/patch-1

What should be specified is not obvious for Azure Network Security Groups
This commit is contained in:
Paul Stack 2016-10-15 02:47:18 +01:00 committed by GitHub
commit 0359146e8d
1 changed files with 3 additions and 2 deletions

View File

@ -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
```
```