~xenrox/ansible

d1764fd81b31dce42bd18dcef0895b5f6772c4f3 — Thorben Günther 2 years ago 209b2fe
vault: Suppress "Objects have changed outside of Terraform"
1 files changed, 8 insertions(+), 2 deletions(-)

M terraform_vault/auth.tf
M terraform_vault/auth.tf => terraform_vault/auth.tf +8 -2
@@ 12,8 12,14 @@ resource "vault_jwt_auth_backend" "keycloak" {
  oidc_client_secret = data.vault_generic_secret.vault.data["oidc_secret"]

  tune {
    listing_visibility = "unauth"
    token_type         = "default-service"
    allowed_response_headers     = []
    audit_non_hmac_request_keys  = []
    audit_non_hmac_response_keys = []
    default_lease_ttl            = "1h"
    listing_visibility           = "unauth"
    max_lease_ttl                = "1h"
    passthrough_request_headers  = []
    token_type                   = "default-service"
  }
}