From b7b71db56c3698402577817c195aa8f42093d0a5 Mon Sep 17 00:00:00 2001 From: chian <91816369+chianw@users.noreply.github.com> Date: Thu, 18 Jan 2024 14:13:21 +0800 Subject: [PATCH] Fixed typo on set_resource.sh Fixed typo on set_resource.sh - line 238 --- .../application_gateway_application/scripts/set_resource.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/networking/application_gateway_application/scripts/set_resource.sh b/modules/networking/application_gateway_application/scripts/set_resource.sh index 907410a67c..a817762cd7 100755 --- a/modules/networking/application_gateway_application/scripts/set_resource.sh +++ b/modules/networking/application_gateway_application/scripts/set_resource.sh @@ -235,9 +235,9 @@ case "${RESOURCE}" in ignorecase=$([ -z "${IGNORE_CASE}" ] && echo "" || echo "--ignore-case ${IGNORE_CASE} ") negate=$([ -z "${NEGATE}" ] && echo "" || echo "--negate ${NEGATE} ") pattern=$([ -z "${PATTERN}" ] && echo "" || echo "--pattern ${PATTERN} ") -2 + execute_with_backoff az network application-gateway rewrite-rule condition create -g ${RG_NAME} \ --gateway-name ${APPLICATION_GATEWAY_NAME} --variable ${VARIABLE} --rule-set-name ${RULE_SET_NAME} --rule-name ${RULE_NAME}\ ${ignorecase} ${negate} ${pattern} ;; -esac \ No newline at end of file +esac