refactor: remove outdated DNS config

This commit is contained in:
Kim, Jimin 2024-10-11 13:21:31 +09:00
parent 1281a1fdc6
commit 8ea7d80f77
Signed by: pomp
GPG key ID: 2B516173EDD492EB
4 changed files with 0 additions and 108 deletions

View file

@ -1,38 +0,0 @@
name: OpenTofu
on:
push:
branches:
- master
paths:
- main.tf
- .terraform.lock.hcl
permissions:
contents: read
jobs:
opentofu:
name: OpenTofu
runs-on: ubuntu-latest
defaults:
run:
shell: bash
steps:
- name: Checkout Repo
uses: actions/checkout@v3
- name: Setup OpenTofu
uses: opentofu/setup-opentofu@v1
- name: Configure AWS credentials
uses: aws-actions/configure-aws-credentials@v1
with:
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }}
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
aws-region: us-west-1 # just a random region (also used in main.tf)
- run: tofu init
- run: tofu fmt -check
- run: tofu plan -input=false
- run: tofu apply -auto-approve -input=false