From 5d8954d375c351ca25e4f531c8d6f910b99fbea6 Mon Sep 17 00:00:00 2001 From: "Matthew C. Morgan" Date: Mon, 28 Apr 2025 20:30:12 -0400 Subject: [PATCH] simplify more --- config_job.tf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/config_job.tf b/config_job.tf index 03396ef..05b8474 100644 --- a/config_job.tf +++ b/config_job.tf @@ -90,9 +90,9 @@ GRANT echo "Creating realm: $realm_name" # Check if realm exists - local status=$(curl -s -o /dev/null -w %%{http_code} \ + curl -s -o /dev/null -w %%{http_code} \ -H "Authorization: Bearer $KC_TOKEN" \ - "$KC_URL/auth/admin/realms/$realm_name") + "$KC_URL/auth/admin/realms/$realm_name" # Create realm curl -s -X POST \