Skip to content

Commit b37865b

Browse files
authored
fix: resource provider registration (#37)
1 parent 5a3bb7f commit b37865b

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

mail.tf

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
resource "azurerm_resource_provider_registration" "comms" {
2+
count = var.enable_acs ? 1 : 0
3+
name = "Microsoft.Communication"
4+
}
5+
16
resource "azurerm_communication_service" "comms" {
27
count = var.enable_acs ? 1 : 0
38
name = "acs-${local.namespace}"

0 commit comments

Comments
 (0)