Manages an Authorization Rule associated with a Notification Hub within a Notification Hub Namespace.
resource "azurerm_resource_group" "example" {
name = "notificationhub-resources"
location = "West Europe"
}
resource "azurerm_notification_hub_namespace" "example" {
name = "myappnamespace"
resource_group_name = azurerm_resource_group.example.name
location = azurerm_resource_group.example.location
namespace_type = "NotificationHub"
sku_name = "Free"
}
resource "azurerm_notification_hub" "example" {
name = "mynotificationhub"
namespace_name = azurerm_notification_hub_namespace.example.name
resource_group_name = azurerm_resource_group.example.name
location = azurerm_resource_group.example.location
}
resource "azurerm_notification_hub_authorization_rule" "example" {
name = "management-auth-rule"
notification_hub_name = azurerm_notification_hub.example.name
namespace_name = azurerm_notification_hub_namespace.example.name
resource_group_name = azurerm_resource_group.example.name
manage = true
send = true
listen = true
}
The following arguments are supported:
name
- (Required) The name to use for this Authorization Rule. Changing this forces a new resource to be created.
notification_hub_name
- (Required) The name of the Notification Hub for which the Authorization Rule should be created. Changing this forces a new resource to be created.
namespace_name
- (Required) The name of the Notification Hub Namespace in which the Notification Hub exists. Changing this forces a new resource to be created.
resource_group_name
- (Required) The name of the Resource Group in which the Notification Hub Namespace exists. Changing this forces a new resource to be created.
manage
- (Optional) Does this Authorization Rule have Manage access to the Notification Hub? Defaults to false
.
send
- (Optional) Does this Authorization Rule have Send access to the Notification Hub? Defaults to false
.
listen
- (Optional) Does this Authorization Rule have Listen access to the Notification Hub? Defaults to false
.
In addition to the Arguments listed above - the following Attributes are exported:
id
- The ID of the Authorization Rule.
primary_access_key
- The Primary Access Key associated with this Authorization Rule.
secondary_access_key
- The Secondary Access Key associated with this Authorization Rule.
The timeouts
block allows you to specify timeouts for certain actions:
create
- (Defaults to 30 minutes) Used when creating the Notification Hub Authorization Rule.update
- (Defaults to 30 minutes) Used when updating the Notification Hub Authorization Rule.read
- (Defaults to 5 minutes) Used when retrieving the Notification Hub Authorization Rule.delete
- (Defaults to 30 minutes) Used when deleting the Notification Hub Authorization Rule.Notification Hub Authorization Rule can be imported using the resource id
, e.g.
terraform import azurerm_notification_hub_authorization_rule.rule1 /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mygroup1/providers/Microsoft.NotificationHubs/namespaces/namespace1/notificationHubs/hub1/authorizationRules/rule1