diff --git a/.tangled/workflows/terraform_apply.yaml b/.tangled/workflows/terraform_apply.yaml index 1f654c2..870c39a 100644 --- a/.tangled/workflows/terraform_apply.yaml +++ b/.tangled/workflows/terraform_apply.yaml @@ -9,7 +9,7 @@ when: dependencies: nixpkgs: - - terraform + - opentofu steps: - name: Create tfvars file @@ -22,12 +22,12 @@ steps: secret_key = "$CLOUDFLARE_R2_SECRET_KEY" EOF - - name: Initialize Terraform + - name: Initialize OpenTofu command: | cd terraform - terraform init -backend-config=config.s3.tfbackend + tofu init -backend-config=config.s3.tfbackend - - name: Execute Terraform apply + - name: Execute OpenTofu apply command: | cd terraform - terraform apply -auto-approve + tofu apply -auto-approve diff --git a/.tangled/workflows/terraform_plan.yaml b/.tangled/workflows/terraform_plan.yaml index f2c6db7..43f4135 100644 --- a/.tangled/workflows/terraform_plan.yaml +++ b/.tangled/workflows/terraform_plan.yaml @@ -8,7 +8,7 @@ when: dependencies: nixpkgs: - - terraform + - opentofu steps: - name: Create tfvars file @@ -21,12 +21,12 @@ steps: secret_key = "$CLOUDFLARE_R2_SECRET_KEY" EOF - - name: Initialize Terraform + - name: Initialize OpenTofu command: | cd terraform - terraform init -backend-config=config.s3.tfbackend + tofu init -backend-config=config.s3.tfbackend - - name: Execute Terraform plan + - name: Execute OpenTofu plan command: | cd terraform - terraform plan + tofu plan