Terraform genesyscloud_user schema broke in v1.35.0

Hey everyone,

We’ve been running a stable Terraform setup to provision agent accounts for our WFM team in Genesys Cloud. Everything was smooth until we updated the CX as Code provider to version 1.35.0 yesterday. It seems like there’s a breaking change in the genesyscloud_user resource schema regarding how we define user profiles or maybe the address fields. The plan command now throws a weird error about an unsupported attribute or missing required field that wasn’t there before. I’m trying to figure out if I need to update my HCL structure or if this is a bug in the new provider release. Here’s the snippet that’s failing:

resource "genesyscloud_user" "agent" {
 first_name = "John"
 last_name = "Doe"
 email = "john.doe@example.com"
 
 address {
 line1 = "123 Main St"
 city = "Chicago"
 state_code = "IL"
 postal_code = "60601"
 }
}

The error message I’m getting is: Error: Unsupported attribute. An argument named "line1" is not expected here. It’s super confusing because the documentation for v1.34.0 clearly shows this structure. I’ve checked the changelog but it’s not super detailed about schema changes for users. Has anyone else hit this wall? I need to get these agents provisioned before our shift starts at 8 AM CT so I can’t wait too long for a fix. Any workarounds or correct syntax for the new version would be great.