» Data Source: azurerm_notification_hub_namespace
Use this data source to access information about an existing Notification Hub Namespace.
» Example Usage
data "azurerm_notification_hub_namespace" "test" {
name = "my-namespace"
resource_group_name = "my-resource-group"
}
output "servicebus_endpoint" {
value = "${data.azurerm_notification_hub_namespace.test.servicebus_endpoint}"
}
» Argument Reference
-
name- (Required) Specifies the Name of the Notification Hub Namespace. -
resource_group_name- (Required) Specifies the Name of the Resource Group within which the Notification Hub exists.
» Attributes Reference
-
id- The ID of the Notification Hub Namespace. -
location- The Azure Region in which this Notification Hub Namespace exists. -
namespace_type- The Type of Namespace, such asMessagingorNotificationHub. -
sku- Askublock as defined below. -
enabled- Is this Notification Hub Namespace enabled?
A sku block exports the following:
-
name- (Required) The name of the SKU to use for this Notification Hub Namespace. Possible values areFree,BasicorStandard.