Add OpenTofu config files
Some checks failed
CI / ci (pull_request) Failing after 1m8s

This commit is contained in:
2025-05-10 23:25:59 +01:00
parent 5e1fe61d62
commit c1358cf16c
4 changed files with 349 additions and 10 deletions

View File

@@ -19,25 +19,25 @@ jobs:
- name: OpenTofu fmt
id: fmt
run: tofu fmt -check
run: tofu -chdir=tf fmt -check
continue-on-error: true
- name: OpenTofu init
id: init
run: tofu init
run: tofu -chdir=tf init
- name: OpenTofu validate
id: validate
run: tofu validate -no-color
run: tofu -chdir=tf validate -no-color
- name: OpenTofu refresh
id: validate
run: tofu refresh
run: tofu -chdir=tf refresh
continue-on-error: true
- name: OpenTofu plan
id: plan
run: tofu plan -no-color
run: tofu -chdir=tf plan -no-color
continue-on-error: true
- name: Post comment to PR

View File

@@ -18,20 +18,20 @@ jobs:
- name: OpenTofu init
id: init
run: tofu init
run: tofu -chdir=tf init
- name: OpenTofu validate
id: validate
run: tofu validate -no-color
run: tofu -chdir=tf validate -no-color
- name: OpenTofu refresh
id: validate
run: tofu refresh
run: tofu -chdir=tf refresh
- name: OpenTofu plan
id: plan
run: tofu plan -no-color -out /tmp/plan.tfplan
run: tofu -chdir=tf plan -no-color -out /tmp/plan.tfplan
- name: OpenTofu apply
id: apply
run: tofu apply /tmp/plan.tfplan
run: tofu -chdir=tf apply /tmp/plan.tfplan