-
Notifications
You must be signed in to change notification settings - Fork 5.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
NotificationHubs Namespace NamespaceType not Returned in Response #17277
Comments
Thanks for the feedback! We are routing this to the appropriate team for follow-up. cc @tjsomasundaram. Issue DetailsHi, the Lines 1679 to 1685 in 577c034
The test we ran at 2021/12/03 still had it in the response. Test I've made today using REST API (sensitive info removed):
|
Issue reported on Terraform hashicorp/terraform-provider-azurerm#14541 |
Any update on a timeline for this fix? Using Terraform results in always updating this resource due to this missing property which always adds 2-3 minutes to our deployments unnecessarily. Much appreciated on any updates. Thanks! |
We had the same issue and solved it by excluding the namespace_type from updates: resource "azurerm_notification_hub_namespace" "myhub" {
name = "myhub-notification-hub-${var.environment}"
resource_group_name = azurerm_resource_group.workspace_product.name
location = azurerm_resource_group.workspace_product.location
namespace_type = "NotificationHub"
sku_name = var.notification_hub_sku
lifecycle {
ignore_changes = [
# ignore namespace_type because of a bug in Azure: https://github.com/Azure/azure-rest-api-specs/issues/17277
namespace_type
]
}
} |
Hi, the
namespaceType
property in notificationhubs namespace seems to be missing starting from some time around 2021/12/06.azure-rest-api-specs/specification/notificationhubs/resource-manager/Microsoft.NotificationHubs/stable/2017-04-01/notificationhubs.json
Lines 1679 to 1685 in 577c034
The test we ran at 2021/12/03 still had it in the response.
Test I've made today using REST API (sensitive info removed):
I tried setting
namespaceType
toMessaging
andNotificationHub
, both are not shown in the GET response.The text was updated successfully, but these errors were encountered: