terraform-provider-cloudflare icon indicating copy to clipboard operation
terraform-provider-cloudflare copied to clipboard

No support for maintenance notification airport_code

Open ThomasIAm opened this issue 1 year ago • 1 comments

Current Terraform and Cloudflare provider version

Terraform v1.7.2 on windows_amd64

  • provider registry.terraform.io/cloudflare/cloudflare v4.25.0

Description

The provider needs to support the required airport_code filter for the cloudflare_notification_policy resource.

Use cases

I want to manage this notification policy type the same way as all my others, with Terraform.

Potential Terraform configuration

resource "cloudflare_notification_policy" "maintenance" {
  account_id  = var.cloudflare_account_id
  name        = "Maintenance"
  description = "A maintenance on a point of presence has been scheduled, changed, or canceled"
  enabled     = true
  alert_type  = "maintenance_event_notification"

  email_integration {
    id = "[email protected]"
  }

  filters {
    airport_code = "AMS,BRU"
  }
}

References

No response

ThomasIAm avatar Mar 01 '24 15:03 ThomasIAm

Community Note

Voting for Prioritization

  • Please vote on this issue by adding a 👍 reaction to the original post to help the community and maintainers prioritize this request.
  • Please do not leave "+1" or other comments that do not add relevant new information or questions, they generate extra noise for issue followers and do not help prioritize the request.

Volunteering to Work on This Issue

  • If you are interested in working on this issue, please leave a comment.
  • If this would be your first contribution, please review the contribution guide.

github-actions[bot] avatar Mar 01 '24 15:03 github-actions[bot]