diff --git a/manifests/integrations/registry-credentials-sync/azure/reconcile-patch.yaml b/manifests/integrations/registry-credentials-sync/azure/reconcile-patch.yaml
index ea79df700248639c07ca69ac21d7293ced82dee6..b713053bbadf9c24f96f31f824ce6381f33a17c0 100644
--- a/manifests/integrations/registry-credentials-sync/azure/reconcile-patch.yaml
+++ b/manifests/integrations/registry-credentials-sync/azure/reconcile-patch.yaml
@@ -17,13 +17,13 @@ spec:
               echo "Starting ACR token sync -- $(date)"
               echo "Logging into Azure"
               az login --identity
-              echo "Logging into ACR: ${ACR_NAME}"
-              output="$(az acr login --expose-token -o=tsv -n "${ACR_NAME}")"
-              read token server <<< "${output}"
+              echo "Logging into ACR: $ACR_NAME"
+              output="$(az acr login --expose-token -o=tsv -n "$ACR_NAME")"
+              read token server <<< "$output"
               user="00000000-0000-0000-0000-000000000000"
 
-              echo "Creating secret: ${KUBE_SECRET}"
-              apply-secret "${KUBE_SECRET}" "${token}" "${user}" "${server}"
+              echo "Creating secret: $KUBE_SECRET"
+              apply-secret "$KUBE_SECRET" "$token" "$user" "$server"
 
               echo "Finished ACR token sync -- $(date)"
               echo