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

[#IOPID-2488] align fn-lv subnet with service_endpoint #123

Merged
merged 2 commits into from
Nov 8, 2024
Merged
Changes from all 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
9 changes: 7 additions & 2 deletions infra/resources/prod/function_lv.tf
Original file line number Diff line number Diff line change
Expand Up @@ -90,8 +90,13 @@ module "function_lv" {
node_version = 20
tier = "xl"

subnet_cidr = local.cidr_subnet_fn_lv
subnet_pep_id = data.azurerm_subnet.private_endpoints_subnet.id
subnet_cidr = local.cidr_subnet_fn_lv
subnet_pep_id = data.azurerm_subnet.private_endpoints_subnet.id

subnet_service_endpoints = {
web = true
}

private_dns_zone_resource_group_name = data.azurerm_resource_group.rg_common.name

virtual_network = {
Expand Down
Loading