Open
Description
Hej,
i noticed the following behaviour as we were tackling a different problem. The solution was to remove the ordering from the Rate Limiting Advanced plugin. I edited the corresponding terraform resource and removed the ordering but the plan wont recognize the changes i made.
I took a new plugin resource like so:
resource "konnect_gateway_plugin_rate_limiting_advanced" "rate_limiting_advanced" {
control_plane_id = var.target_control_plane_id
enabled = true
instance_name = "loesch_mich"
config = {
identifier = "header"
limit = [128]
strategy = "local"
header_name = "client_id"
window_type = "fixed"
window_size = [ 60 ]
}
ordering = {
after = {
access = [
"openid-connect"
]
}
}
tags = local.tags
}
I applied the resource and removed the ordering afterwards and once again the tf plan yields no changes.
Thank you!
Activity