Skip to content

Commit

Permalink
Doc Fix: private_endpoint.html.markdown hashicorp#7450
Browse files Browse the repository at this point in the history
  • Loading branch information
marcin-dudek authored and jrauschenbusch committed Jun 25, 2020
1 parent a5fca49 commit e417cff
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions website/docs/r/private_endpoint.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ resource "azurerm_subnet" "service" {
name = "service"
resource_group_name = azurerm_resource_group.example.name
virtual_network_name = azurerm_virtual_network.example.name
address_prefix = "10.0.1.0/24"
address_prefixes = ["10.0.1.0/24"]
enforce_private_link_service_network_policies = true
}
Expand All @@ -42,7 +42,7 @@ resource "azurerm_subnet" "endpoint" {
name = "endpoint"
resource_group_name = azurerm_resource_group.example.name
virtual_network_name = azurerm_virtual_network.example.name
address_prefix = "10.0.2.0/24"
address_prefixes = ["10.0.2.0/24"]
enforce_private_link_endpoint_network_policies = true
}
Expand Down

0 comments on commit e417cff

Please sign in to comment.