File tree Expand file tree Collapse file tree 2 files changed +5
-4
lines changed Expand file tree Collapse file tree 2 files changed +5
-4
lines changed Original file line number Diff line number Diff line change 14
14
# # Local values for resource names and tags
15
15
# locals {
16
16
# resource_group_name = module.resource_names["resource_group"].standard
17
- # endpoint_name = module.resource_names["private_endpoint"].standard
17
+ # endpoint_name = module.resource_names["private_endpoint"].standard
18
18
# private_endpoint_tags = merge({ resource_name = local.endpoint_name }, local.default_tags, var.tags)
19
19
# private_service_connection_name = module.resource_names["private_service_connection"].standard
20
20
# default_tags = {
27
27
locals {
28
28
# resource_group_name = module.resource_names["resource_group"].standard
29
29
# key_vault_name = var.key_vault_name != null ? var.key_vault_name : module.resource_names["key_vault"].minimal_random_suffix_without_any_separators
30
- endpoint_name = var. endpoint_name != null ? var. endpoint_name : module. resource_names [" private_endpoint" ]. standard
30
+ # endpoint_name = var.endpoint_name != null ? var.endpoint_name : module.resource_names["private_endpoint"].standard
31
31
# private_service_connection_name = var.private_service_connection_name != null ? var.private_service_connection_name : module.resource_names["private_service_connection"].standard
32
32
resource_group_name = var. resource_group_name != null ? var. resource_group_name : module. resource_names [" resource_group" ]. standard
33
+ endpoint_name = module. resource_names [" private_endpoint" ]. standard
33
34
default_tags = {
34
35
" provisioner" = " terraform"
35
36
}
Original file line number Diff line number Diff line change @@ -108,8 +108,8 @@ module "private_endpoint" {
108
108
109
109
count = var. public_network_access_enabled ? 0 : 1
110
110
111
- # endpoint_name = local.endpoint_name
112
- endpoint_name = module. resource_names [" private_endpoint" ]. standard
111
+ endpoint_name = local. endpoint_name
112
+ # endpoint_name = module.resource_names["private_endpoint"].standard
113
113
# resource_group_name = local.resource_group_name
114
114
resource_group_name = module. resource_names [" resource_group" ]. standard
115
115
region = var. location
You can’t perform that action at this time.
0 commit comments