Enable Detailed CloudWatch Metrics on API Gateway default stage

Im trygin to enale the detailed cloudwatch metrics on APIGW something like

resource "aws_api_gateway_method_settings" "general_settings" {
  rest_api_id = aws_api_gateway_rest_api.api.id
  stage_name  = "default"
  method_path = "*/*"

  settings {
    metrics_enabled = true
  }
}

but im getting an error

Error: Provider produced inconsistent result after apply

When applying changes to aws_api_gateway_method_settings.general_settings,
provider “aws” produced an unexpected new value for was present, but now
absent.

This is a bug in the provider, which should be reported in the provider’s own
issue tracker.

any idea if is not supported? I found an issue like API Gateway Stages - Add support for Cloudwatch settings · Issue #9238 · hashicorp/terraform-provider-aws · GitHub but im not sure if is related