Terraform-provider-azurerm: Support for iot hub message-enrichment

Created on 25 Feb 2020  路  4Comments  路  Source: terraform-providers/terraform-provider-azurerm

Community Note

  • Please vote on this issue by adding a 馃憤 reaction to the original issue to help the community and maintainers prioritize this request
  • Please do not leave "+1" or "me too" comments, they generate extra noise for issue followers and do not help prioritize the request
  • If you are interested in working on this issue or have submitted a pull request, please leave a comment

Description


Add support for iot hub message enrichement.
This feature is available in azure cli: https://docs.microsoft.com/en-us/cli/azure/iot/hub/message-enrichment?view=azure-cli-latest

New or Affected Resource(s)

  • azurerm_iothub

Potential Terraform Configuration

# Copy-paste your Terraform configurations here - for large Terraform configs,
# please use a service like Dropbox and share a link to the ZIP file. For
# security, you can also encrypt the files using our GPG public key.

References

  • 0000

  • enhancement serviciothub

    Most helpful comment

    Hello,

    I really need this functionality. my PR
    Could it be part of the next release?

    Thanks

    All 4 comments

    Up!

    Hi,

    It could be very nice to get this feature, really missing :o

    Thx
    Alex

    Potential Terraform Configuration:

    resource "azurerm_iothub_enrichment" "legacy_id" {
      name = "legacyId"
      resource_group_name = azurerm_iothub.hub.resource_group_name
      iothub_name         = azurerm_iothub.hub.name
    
      value = "$twin.tags.legacyId"
    
      endpoint_names = ["events"] # builtin endpoint
    }
    
    

    Hello,

    I really need this functionality. my PR
    Could it be part of the next release?

    Thanks

    Was this page helpful?
    0 / 5 - 0 ratings