gitlab_application_settings setting ci_job_live_trace_enabled not working properly
<!-- 🚧 Please make sure to add a meaningful issue title above --> ## Bug Report When setting `ci_job_live_trace_enabled` for the `gitlab_application_settings` resource, the feature flag is not flipping from enabled or disabled. Terraform seems to read the property correctly, but the value will not change. ## Relevant Terraform Configuration ```hcl resource "gitlab_application_settings" "default_gitlab_application_settings" { ci_job_live_trace_enabled = true can_create_group = false } ``` ## Relevant Terraform Command ```sh terraform apply ``` ## Relevant Log Output ```sh 17:16:37.543 STDOUT terraform: Terraform will perform the following actions: 17:16:37.544 STDOUT terraform: # gitlab_application_settings.default_gitlab_application_settings will be updated in-place 17:16:37.544 STDOUT terraform: ~ resource "gitlab_application_settings" "default_gitlab_application_settings" { 17:16:37.544 STDOUT terraform: ~ ci_job_live_trace_enabled = true -> false 17:16:37.544 STDOUT terraform: id = "gitlab" 17:16:37.544 STDOUT terraform: # (320 unchanged attributes hidden) 17:16:37.544 STDOUT terraform: # (1 unchanged block hidden) 17:16:37.544 STDOUT terraform: } 17:16:37.544 STDOUT terraform: Plan: 0 to add, 1 to change, 0 to destroy. 17:16:37.544 STDOUT terraform: 17:16:37.544 STDOUT terraform: 17:16:37.544 STDOUT terraform: Do you want to perform these actions? 17:16:37.544 STDOUT terraform: Terraform will perform the actions described above. 17:16:37.544 STDOUT terraform: Only 'yes' will be accepted to approve. 17:16:37.544 STDOUT terraform: Enter a value: yes 17:16:40.541 INFO terraform: TF_LOG: backend/local: apply calling Apply 17:16:40.549 INFO terraform: TF_LOG: provider: configuring client automatic mTLS 17:16:40.560 INFO terraform: TF_LOG: provider.terraform-provider-gitlab_v18.11.0: configuring server automatic mTLS: timestamp=2026-04-21T17:16:40.560Z ``` <details> <summary>These are the debug logs of the `terraform` command output:</summary> ```plaintext n/a ``` </details> ## Additional Details <!-- 🚧 Please fill in the used versions below between the backticks. --> - GitLab Terraform Provider Version: `18.11.0` - GitLab Instance Version: `18.5` - Terraform Version: `1.10.5` - License Tier: `Free`
issue