hashicorp / terraform-provider-azurerm

Terraform provider for Azure Resource Manager
https://registry.terraform.io/providers/hashicorp/azurerm/latest/docs
Mozilla Public License 2.0
4.54k stars 4.61k forks source link

Support for Azure Notification Hub FCM credentials #25215

Open tcarsuzanlandytech opened 6 months ago

tcarsuzanlandytech commented 6 months ago

Is there an existing issue for this?

Community Note

Description

We need a new FCM credentials block in Azure Notification module.

image

Migration from GCM to FCM is required before July 2024. https://learn.microsoft.com/en-us/azure/notification-hubs/notification-hubs-gcm-to-fcm https://learn.microsoft.com/en-us/azure/notification-hubs/firebase-migration-rest#create-google-service-account-json-file

New or Affected Resource(s)/Data Source(s)

azurerm_notification_hub

Potential Terraform Configuration

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
  fcm_credential {
    private_key       = "xxx"
    client_email      = "xxx"
    project_id        = "xxx"
  } 
}

References

https://github.com/MicrosoftDocs/azure-docs/issues/93522

ferlorca commented 3 months ago

Hi any updates regarding this issue?

simonecoppini commented 1 month ago

I do not understand... it looks like almost a dead prjoect ... there are differents resources that needs to be updates and no feedback from the team

vitaliy-shatskiy commented 2 weeks ago

Any updates?