add dependencies to workflow #7
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: Deploy | |
on: | |
push: | |
branches: | |
- main | |
paths: | |
- 'terraform/**' | |
- '.github/workflows/deploy.yml' | |
- 'lambda_function/**' | |
jobs: | |
deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Configure AWS credentials | |
uses: aws-actions/configure-aws-credentials@v4 | |
with: | |
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }} | |
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }} | |
aws-region: ${{ secrets.AWS_REGION }} | |
- name: Package Lambda function | |
run: | | |
cd lambda_function | |
zip -r ../terraform/lambda_function.zip . -x "venv/*" | |
echo "Lambda function zipped" | |
- name: Set up Terraform | |
uses: hashicorp/setup-terraform@v3 | |
- name: Make scripts executable | |
run: | | |
chmod +x ./terraform/scripts/upload_to_s3.sh | |
chmod +x ./terraform/scripts/upload_resume.py | |
- name: Install dependencies | |
run: | | |
python3 -m pip install --upgrade pip | |
pip install boto3 | |
- name: Decrypt tfvars file, Initialize and Deploy infrastructure with Terraform | |
run: | | |
cd terraform | |
gpg --quiet --batch --yes --decrypt --passphrase="$SECRET_PASSPHRASE" --output variables.tfvars variables.tfvars.gpg | |
ls | |
terraform init | |
terraform apply -auto-approve -var-file="variables.tfvars" | |
env: | |
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }} | |
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }} | |
AWS_REGION: ${{ secrets.AWS_REGION }} | |
SECRET_PASSPHRASE: ${{ secrets.SECRET_PASSPHRASE }} | |