adamant-kite-43734
02/14/2024, 11:51 AMstocky-account-63046
02/15/2024, 1:07 PMmanagement.cattle.io.settings
ui-performance
silly-jelly-27487
02/16/2024, 10:50 AMrancher2_setting
resource, but didn’t work.
But are two flags, so not sure if ui-performance
is boolean or string..
resource "rancher2_setting" "this" {
for_each = (
var.enable_rancher
? {
ui-pl = "XXX"
ui-performance = "true"
}
: {}
)
name = each.key
value = each.value
}
stocky-account-63046
02/16/2024, 11:02 AMui-performance
is a json blob. to see the value check out <rancher url>/v1/management.cattle.io.settings/ui-performance
in a recently deployed ranchersilly-jelly-27487
02/16/2024, 11:31 AMstocky-account-63046
02/16/2024, 11:41 AM