How to disable the auto generated rule by the Authorization Extension via Terraform

Hello!
Due to the deprecation of rules I would like to disable the auto generated rule by the Authorization Extension (auth0-authorization-extension). I’m using Terraform to deploy Auth0 and I’ve already refactored the code into an action.

I’ve tried to disable this rule with the dummy rule below I’ve created but it doesn’t help:

resource "auth0_rule" "auth0_authorization_extension" {
  count   = 0
  name    = "auth0-authorization-extension"
  script  = ""
  enabled = false
}

Is there a way to disable this rule permanently via Terraform configuration?