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
resource "azurerm_eventgrid_domain_topic" "demo_added" {
name = "resourceadded"
domain_name = azurerm_eventgrid_domain.demo.name
resource_group_name = var.resource_group_name
Parameters
-
domain_namerequired - string -
idoptional computed - string -
namerequired - string -
resource_group_namerequired - string -
timeoutssingle block
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
apiVersionrequired - stringnamerequired - stringName of the domain topic.
typerequired - 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.