Microsoft.EventGrid extensionTopics 2022-06-15
Bicep resource definition
The extensionTopics resource type is an extension resource, which means you can apply it to another resource.
Use the scope
property on this resource to set the scope for this resource. See Set scope on extension resources in Bicep.
The extensionTopics resource type can be deployed with operations that target:
- Resource groups - See resource group deployment commands
Note
This resource type is read-only, which means it can't be deployed but an existing instance can be referenced. Typically, read-only resource types are automatically created by the service.
Use the existing
keyword.
Resource format
To create a Microsoft.EventGrid/extensionTopics resource, add the following Bicep to your template.
resource symbolicname 'Microsoft.EventGrid/extensionTopics@2022-06-15' existing = {
name: 'string'
}
Property values
extensionTopics
Name | Description | Value |
---|---|---|
name | The name of the existing resource. | 'default' |
ARM template resource definition
The extensionTopics resource type is an extension resource, which means you can apply it to another resource.
Use the scope
property on this resource to set the scope for this resource. See Set scope on extension resources in ARM templates.
The extensionTopics resource type can be deployed with operations that target:
- Resource groups - See resource group deployment commands
Note
This resource type is read-only, which means it can't be deployed but an existing instance can be referenced. Typically, read-only resource types are automatically created by the service.
Use the reference
function.
Resource format
To create a Microsoft.EventGrid/extensionTopics resource, add the following JSON to your template.
[reference(resourceId('Microsoft.EventGrid/extensionTopics', '{name}'), '2022-06-15')]
Property values
extensionTopics
Name | Description | Value |
---|---|---|
name | The name of the existing resource. | 'default' |
Terraform (AzAPI provider) resource definition
The extensionTopics resource type is an extension resource, which means you can apply it to another resource.
Use the parent_id
property on this resource to set the scope for this resource.
The extensionTopics resource type can be deployed with operations that target:
- Resource groups
Note
This resource type is read-only, which means it can't be deployed but an existing instance can be referenced. Typically, read-only resource types are automatically created by the service.
Use the data
keyword.
Resource format
To create a Microsoft.EventGrid/extensionTopics resource, add the following Terraform to your template.
data "azapi_resource" "symbolicname" {
type = "Microsoft.EventGrid/extensionTopics@2022-06-15"
name = "string"
parent_id = "string"
}
Property values
extensionTopics
Name | Description | Value |
---|---|---|
name | The name of the existing resource. | "default" |
parent_id | The ID of the resource to apply this extension resource to. | string (required) |