Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update email_communication_service_domain.html.markdown #26634

Merged
merged 2 commits into from
Jul 18, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,8 @@ resource "azurerm_email_communication_service" "example" {
}

resource "azurerm_email_communication_service_domain" "example" {
name = "AzureManagedDomain"
resource_group_name = azurerm_resource_group.example.name
email_service_id = azurerm_email_communication_service.example.id
name = "AzureManagedDomain"
email_service_id = azurerm_email_communication_service.example.id

domain_management = "AzureManaged"
}
Expand All @@ -39,8 +38,6 @@ The following arguments are supported:

* `name` - (Required) The name of the Email Communication Service resource. If `domain_management` is `AzureManaged`, the name must be `AzureManagedDomain`. Changing this forces a new Email Communication Service to be created.

* `resource_group_name` - (Required) The name of the Resource Group where the Email Communication Service of the Domain exists. Changing this forces a new Email Communication Service to be created.

* `email_service_id` - (Required) The resource ID of the Email Communication Service where the Domain belongs to. Changing this forces a new Email Communication Service to be created.

* `domain_management` - (Required) Describes how a Domains resource is being managed. Possible values are `AzureManaged`, `CustomerManaged`, `CustomerManagedInExchangeOnline`. Changing this forces a new Email Communication Service to be created.
Expand Down
Loading