diff --git a/.changeset/eight-walls-pay.md b/.changeset/eight-walls-pay.md new file mode 100644 index 000000000..59092d605 --- /dev/null +++ b/.changeset/eight-walls-pay.md @@ -0,0 +1,5 @@ +--- +"azure_cosmos_account": patch +--- + +Added tags into private endpoint diff --git a/infra/modules/azure_cosmos_account/networking.tf b/infra/modules/azure_cosmos_account/networking.tf index 34090f2b7..f1b86a197 100644 --- a/infra/modules/azure_cosmos_account/networking.tf +++ b/infra/modules/azure_cosmos_account/networking.tf @@ -18,4 +18,6 @@ resource "azurerm_private_endpoint" "sql" { name = "private-dns-zone-group" private_dns_zone_ids = [data.azurerm_private_dns_zone.cosmos.id] } + + tags = var.tags }