[Pocket] Ensure 20 most recent are sorted by date_read desc #38
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: Infra | |
on: | |
push: | |
branches: [ main ] | |
env: | |
INFRA_DIRECTORY: infra | |
TF_VAR_aws_account_number: ${{ secrets.AWS_ACCOUNT_NUMBER }} | |
TF_VAR_pocket_consumer_key: ${{ secrets.POCKET_CONSUMER_KEY }} | |
TF_VAR_pocket_access_token: ${{ secrets.POCKET_ACCESS_TOKEN }} | |
AWS_REGION: eu-west-2 | |
jobs: | |
terraform: | |
name: Terraform | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
shell: bash | |
working-directory: ${{ env.INFRA_DIRECTORY }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Configure AWS Credentials | |
uses: aws-actions/configure-aws-credentials@v1-node16 | |
with: | |
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }} | |
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }} | |
aws-region: eu-west-2 | |
- name: Setup Terraform | |
uses: hashicorp/setup-terraform@v2 | |
- name: Terraform Init | |
id: init | |
run: terraform init -input=false | |
- name: Terraform Validate | |
id: validate | |
run: terraform validate | |
- name: Terraform plan | |
id: plan | |
run: terraform plan -out=tfplan -input=false | |
- name: Terraform apply | |
id: apply | |
run: terraform apply -input=false -auto-approve tfplan |