diff --git a/.github/actions/deploy-proxy/action.yml b/.github/actions/deploy-proxy/action.yml index 339d1fc78..0ffc05066 100644 --- a/.github/actions/deploy-proxy/action.yml +++ b/.github/actions/deploy-proxy/action.yml @@ -1,6 +1,9 @@ name: Deploy egress proxy description: Set egress space security groups and deploy proxy inputs: + cf_org: + description: The org the target app exists in. + required: true cf_space: description: The space the target app exists in. required: true diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 4da91e0f3..09f69c73d 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -109,7 +109,11 @@ jobs: - name: Deploy egress proxy #if: steps.changed-egress-config.outputs.any_changed == 'true' uses: ./.github/actions/deploy-proxy + env: + CF_USERNAME: ${{ secrets.CLOUDGOV_USERNAME }} + CF_PASSWORD: ${{ secrets.CLOUDGOV_PASSWORD }} with: + cf_org: gsa-tts-benefits-studio cf_space: notify-staging app: notify-admin-staging