Add option to specify CIDR blocks to allow for ingress (#82) #268
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build | |
on: push | |
jobs: | |
run_tests: | |
permissions: | |
contents: read | |
runs-on: ubuntu-latest | |
env: | |
AWS_DEFAULT_REGION: ${{ secrets.AWS_REGION }} | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Run tests | |
run: | | |
pip install pip --upgrade | |
pip install pyopenssl --upgrade | |
pip install -r functions/replace-route/requirements.txt | |
pip install -r functions/replace-route/tests/test_requirements.txt | |
python -m pytest | |
build_and_push_image: | |
permissions: | |
id-token: write | |
contents: read | |
runs-on: ubuntu-latest | |
needs: run_tests | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Configure AWS Credentials | |
uses: aws-actions/configure-aws-credentials@v1 | |
with: | |
role-to-assume: ${{ secrets.AWS_ROLE_TO_ASSUME }} | |
aws-region: ${{ secrets.AWS_REGION }} | |
- name: Set outputs | |
id: sha | |
run: echo "::set-output name=short_sha::$(git rev-parse --short HEAD)" | |
- name: Login to Amazon ECR | |
id: login-ecr | |
uses: aws-actions/amazon-ecr-login@v1 | |
- name: Build, tag, and push lambda image to Amazon ECR | |
run: | | |
docker build . -t "${{ secrets.ECR_REGISTRY }}/${{ secrets.ECR_REPOSITORY }}:${{ steps.sha.outputs.short_sha }}" | |
docker push "${{ secrets.ECR_REGISTRY}}/${{ secrets.ECR_REPOSITORY }}:${{ steps.sha.outputs.short_sha }}" |