Postgres capacity after upgrading to azure provider 2.1.0

Hello,

I’m trying to upgrade my postgres configuration from the version 1.34.0 to 2.1.0.

I’m facing an error saying that the sku block does not exist anymore but I’m then losing the capacity, tier and family information

before:

sku {
  name     = var.postgres_sku_name
  capacity = var.postgres_sku_capacity
  tier     = var.postgres_sku_tier
  family   = var.postgres_sku_family
}

after:

sku_name = var.postgres_sku_name

Where do I have to declare the those capacity, tier and family information?

Regards