Request to fix the terraform config so that it doesn't keep changing kubernetes_deployment.api.spec.template.spec.priority_class_name every time

I’ve been manually updating the Terraform config to add RDS, Elasticache, and S3 resources. Every time I run terraform apply, I see the following changes:


Terraform used the selected providers to generate the following execution plan. Resource actions are indicated with the following symbols:
  ~ update in-place

Terraform will perform the following actions:

  # module.system.module.rack.module.api.module.k8s.kubernetes_deployment.api will be updated in-place
  ~ resource "kubernetes_deployment" "api" {
        id               = "dse-cx3-3-system/api"
        # (1 unchanged attribute hidden)


      ~ spec {
            # (5 unchanged attributes hidden)



          ~ template {

              ~ spec {
                  - priority_class_name              = "system-cluster-critical" -> null
                    # (12 unchanged attributes hidden)



                    # (3 unchanged blocks hidden)
                }
                # (1 unchanged block hidden)
            }
            # (2 unchanged blocks hidden)
        }
        # (1 unchanged block hidden)
    }

Plan: 0 to add, 1 to change, 0 to destroy.

Not a big deal, but it would just be nice if this could be fixed in a future update. Thanks!