Jayendran
Jayendran

Reputation: 10930

Event Grid Subscription: Terraform missing "Enable Advanced Filtering on arrays" property

I was checking the event-grid-subscription to find a property which is likely to be a boolean type that I can see in the portal below Enable Advanced Filtering on arrays However I couldn't find the exact property in the tf docs.

enter image description here

Am I missing any properties here or the tf module itself doesn't have these features yet?

Upvotes: 0

Views: 679

Answers (2)

Jayendran
Jayendran

Reputation: 10930

Just an Update that my PR for this enhancement is merged

You have to use version 2.69 .0 and above to use this property

  required_providers {
    azurerm = "~> 2.69.0"
  }

Upvotes: 0

Roman Kiss
Roman Kiss

Reputation: 8235

The property EnableAdvancedFilteringOnArrays is supported on API versions newer than 2020-10-15-preview, so you should use the restapi provider in the terraform to handle the new features of the AEG advanced filtering.

Have a look at more details for Event Subscriptions - Update using the REST API.

Upvotes: 1

Related Questions