1. Terraform ECR 배포. repository Name : app 2. gitaction 설정 ci를 위한 저장소의 하위 경로에 .github/workflows/build.yaml 생성 아래는 예시 내용. 숨기는 변수값은 gitaction의 settings의 Secrets에서 설정. name: Django CI on: push: branches: [ "main" ] pull_request: branches: [ "main" ] jobs: build: runs-on: ubuntu-latest strategy: max-parallel: 4 matrix: python-version: [3.8] steps: # git에서 설정한 비공개 변수 - name: checkout source code uses..