Azure Messaging Domain Topic

This page shows how to write Terraform and Azure Resource Manager for Messaging Domain Topic and write them securely.

azurerm_eventgrid_domain_topic (Terraform)

The Domain Topic in Messaging can be configured in Terraform with the resource name azurerm_eventgrid_domain_topic. The following sections describe 1 example of how to use the resource and its parameters.

Example Usage from GitHub

main.tf#L12
resource "azurerm_eventgrid_domain_topic" "demo_added" {
  name                = "resourceadded"
  domain_name         = azurerm_eventgrid_domain.demo.name
  resource_group_name = var.resource_group_name


Review your Terraform file for Azure best practices

Shisho Cloud, our free checker to make sure your Terraform configuration follows best practices, is available (beta).

Parameters

Explanation in Terraform Registry

Manages an EventGrid Domain Topic

Microsoft.EventGrid/domains/topics (Azure Resource Manager)

The domains/topics in Microsoft.EventGrid can be configured in Azure Resource Manager with the resource name Microsoft.EventGrid/domains/topics. The following sections describe how to use the resource and its parameters.

Example Usage from GitHub

An example could not be found in GitHub.

Parameters

  • apiVersion required - string
  • name required - string

    Name of the domain topic.

  • type required - string

Frequently asked questions

What is Azure Messaging Domain Topic?

Azure Messaging Domain Topic is a resource for Messaging of Microsoft Azure. Settings can be wrote in Terraform.

Where can I find the example code for the Azure Messaging Domain Topic?

For Terraform, the dmaxim/terrademo source code example is useful. See the Terraform Example section for further details.