Skip to content

Commit

Permalink
[HOTFIX] Fix ingress whitelist variable setting
Browse files Browse the repository at this point in the history
  • Loading branch information
ebronson68 committed Aug 28, 2024
1 parent 087bd6f commit 1cdfa74
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/aks-deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ jobs:
$ingressWhitelist = $appConfig.ingress.annotations."nginx.ingress.kubernetes.io/whitelist-source-range"
}
} else {
$ingressWhitelist = $inputs.ingressWhitelist
$ingressWhitelist = "${{ inputs.ingressWhitelist }}"
}
if ($appConfig.adminingress) {
$adminIngressWhitelist = "${{ inputs.adminIngressWhitelist }}" ?? $appConfig.adminingress.annotations."nginx.ingress.kubernetes.io/whitelist-source-range"
Expand Down

0 comments on commit 1cdfa74

Please sign in to comment.