Skip to content

Terraform plan wont recognize removing the ordering once the plugin is created #80

Open
@lcsn

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

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Metadata

Assignees

No one assigned

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions