refactor: remove outdated DNS config
This commit is contained in:
parent
1281a1fdc6
commit
8ea7d80f77
4 changed files with 0 additions and 108 deletions
38
.github/workflows/opentofu.yml
vendored
38
.github/workflows/opentofu.yml
vendored
|
@ -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
|
Loading…
Add table
Add a link
Reference in a new issue