This message was deleted.
# general
a
This message was deleted.
s
They're in the json blob in
management.cattle.io.settings
ui-performance
s
Thanks @stocky-account-63046. I tried already using
rancher2_setting
resource, but didn’t work. But are two flags, so not sure if
ui-performance
is boolean or string..
Copy code
resource "rancher2_setting" "this" {
  for_each = (
    var.enable_rancher
    ? {
      ui-pl          = "XXX"
      ui-performance = "true"
    }
    : {}
  )

  name  = each.key
  value = each.value
}
s
ui-performance
is a json blob. to see the value check out
<rancher url>/v1/management.cattle.io.settings/ui-performance
in a recently deployed rancher
s
got it! thanks works!
s
No problem. FWIW we are continuing to work on UI performance with some changes coming in 2.9.0 and later. Those settings may change or be removed once we resolve various issues
1