Disable google-oauth2 in Terraform

I’m managing all tenant resources in Terraform but our account has google-oauth2 enabled for all applications. I’ve imported the resource into the terraform resource below. Every time I run terraform apply, it changes disable_signup to true but there’s something within Auth0 that keeps re-enabling it. Is there anyway to disable this in Terraform or do I need to do it in the UI?

resource “auth0_connection” “google” {
name = “google-oauth2”
strategy = “google-oauth2”

options {
disable_signup = true
}
}