Skip to content

Commit 2e2411b

Browse files
authored
feat: Add Private Endpoints for Storage Tables (#968)
Add Private Endpoints for Storage Tables
1 parent 0d24642 commit 2e2411b

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

infrastructure/tf-core/rbac.tf

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ locals {
88
rbac_roles_storage = [
99
"Storage Account Contributor",
1010
"Storage Blob Data Owner",
11+
"Storage Table Data Contributor",
1112
"Storage Queue Data Contributor"
1213
]
1314

infrastructure/tf-core/storage.tf

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ module "storage" {
2626
# Private Endpoint Configuration if enabled
2727
private_endpoint_properties = var.features.private_endpoints_enabled ? {
2828
private_dns_zone_ids_blob = [data.terraform_remote_state.hub.outputs.private_dns_zones["${each.value.region_key}-storage_blob"].id]
29+
private_dns_zone_ids_table = [data.terraform_remote_state.hub.outputs.private_dns_zones["${each.value.region_key}-storage_table"].id]
2930
private_dns_zone_ids_queue = [data.terraform_remote_state.hub.outputs.private_dns_zones["${each.value.region_key}-storage_queue"].id]
3031
private_endpoint_enabled = var.features.private_endpoints_enabled
3132
private_endpoint_subnet_id = module.subnets["${module.regions_config[each.value.region_key].names.subnet}-pep"].id

0 commit comments

Comments
 (0)