Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add vnet to resource ref #425

Merged
merged 4 commits into from
Dec 6, 2022
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/resources/azure_peering_connection.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ resource "hcp_azure_peering_connection" "peer" {
peer_subscription_id = azurerm_subscription.sub.subscription_id
peer_tenant_id = "<tenant UUID>"
peer_resource_group_name = azurerm_resource_group.rg.name
peer_vnet_region = azurerm_virtual_network.location
peer_vnet_region = azurerm_virtual_network.vnet.location
}

// This data source is the same as the resource above, but waits for the connection to be Active before returning.
Expand Down
4 changes: 2 additions & 2 deletions examples/resources/hcp_azure_peering_connection/resource.tf
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ resource "hcp_azure_peering_connection" "peer" {
peer_subscription_id = azurerm_subscription.sub.subscription_id
peer_tenant_id = "<tenant UUID>"
peer_resource_group_name = azurerm_resource_group.rg.name
peer_vnet_region = azurerm_virtual_network.location
peer_vnet_region = azurerm_virtual_network.vnet.location
}

// This data source is the same as the resource above, but waits for the connection to be Active before returning.
Expand Down Expand Up @@ -80,4 +80,4 @@ resource "azurerm_role_assignment" "assignment" {
principal_id = azuread_service_principal.principal.id
scope = azurerm_virtual_network.vnet.id
role_definition_id = azurerm_role_definition.definition.role_definition_resource_id
}
}