diff --git a/README.adoc b/README.adoc index c9cbe58..d4bdb17 100644 --- a/README.adoc +++ b/README.adoc @@ -36,13 +36,13 @@ The following requirements are needed by this module: The following providers are used by this module: -- [[provider_random]] <> (>= 3) +- [[provider_null]] <> (>= 3) -- [[provider_utils]] <> (>= 1) +- [[provider_random]] <> (>= 3) - [[provider_argocd]] <> (>= 5) -- [[provider_null]] <> (>= 3) +- [[provider_utils]] <> (>= 1) === Resources @@ -309,10 +309,10 @@ Description: ID to pass other modules in order to refer to this module as a depe [cols="a,a",options="header,autowidth"] |=== |Name |Version -|[[provider_null]] <> |>= 3 |[[provider_random]] <> |>= 3 -|[[provider_argocd]] <> |>= 5 |[[provider_utils]] <> |>= 1 +|[[provider_argocd]] <> |>= 5 +|[[provider_null]] <> |>= 3 |=== = Resources diff --git a/locals.tf b/locals.tf index 0c2b1cc..1f48951 100644 --- a/locals.tf +++ b/locals.tf @@ -348,13 +348,13 @@ locals { enabled = var.enable_network_policies extraIngress = var.enable_network_policies ? [ { - from = { + from = [{ podSelector = { matchLabels = { "app" = "traefik" } } - } + }] } ] : [] }