3.10.0 wants to re-activate all the users

GitLab Provider version

3.10.0

GitLab version

14.7.1-ee

Terraform version

1.0.11

Relevant Terraform Configuration

resource "gitlab_user" "user" {
  name        = "Name"
  username    = "username"
  email       = "e@ma.il"
}

Relevant log output

# gitlab_user.user will be updated in-place
~ resource "gitlab_user" "user" {
      id                = "2"
      name              = "Name"
    ~ state             = "deactivated" -> "active"
      # (8 unchanged attributes hidden)
  }

Description

We just upgraded to 3.10.0 and the provider want to re-activate all the deactivated users.

If I set the state field with the value deactivated, then I get this error message:

expected state to be one of [active blocked], got deactivated
Edited by Timo Furrer