We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b37865b commit 906a339Copy full SHA for 906a339
mail.tf
@@ -8,13 +8,21 @@ resource "azurerm_communication_service" "comms" {
8
name = "acs-${local.namespace}"
9
resource_group_name = azurerm_resource_group.resource_group.name
10
data_location = var.acs_data_location
11
+
12
+ depends_on = [
13
+ azurerm_resource_provider_registration.comms
14
+ ]
15
}
16
17
resource "azurerm_email_communication_service" "email" {
18
count = var.enable_acs ? 1 : 0
19
name = "acs-email-${local.namespace}"
20
21
22
23
24
25
26
27
28
resource "azurerm_email_communication_service_domain" "email" {
0 commit comments