From 055bed0ee9116de11a8262be758f781d9737a049 Mon Sep 17 00:00:00 2001 From: Ben Lipton Date: Sat, 8 Nov 2025 23:13:50 -0500 Subject: [PATCH 1/2] Fix indentation in GCP workflow --- docs/ce/getting-started/with-opentofu.mdx | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/docs/ce/getting-started/with-opentofu.mdx b/docs/ce/getting-started/with-opentofu.mdx index aa0a96b08..2e41984ab 100644 --- a/docs/ce/getting-started/with-opentofu.mdx +++ b/docs/ce/getting-started/with-opentofu.mdx @@ -153,15 +153,15 @@ Place it at `.github/workflows/digger_workflow.yml` (name is important!) - name: 'Use gcloud CLI' run: 'gcloud info' - name: digger run - uses: diggerhq/digger@vLatest - with: - digger-spec: ${{ inputs.spec }} - setup-aws: false - setup-opentofu: true - opentofu-version: 1.10.3 - env: - GITHUB_CONTEXT: ${{ toJson(github) }} - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + uses: diggerhq/digger@vLatest + with: + digger-spec: ${{ inputs.spec }} + setup-aws: false + setup-opentofu: true + opentofu-version: 1.10.3 + env: + GITHUB_CONTEXT: ${{ toJson(github) }} + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} ``` This workflow includes additional steps for GCP: From 773253a3c2a86897cf67fc7deb3b4ad948bd1225 Mon Sep 17 00:00:00 2001 From: Ben Lipton Date: Sat, 8 Nov 2025 23:15:32 -0500 Subject: [PATCH 2/2] Add opentofu flag to digger.yml --- docs/ce/getting-started/with-opentofu.mdx | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/ce/getting-started/with-opentofu.mdx b/docs/ce/getting-started/with-opentofu.mdx index 2e41984ab..d6637c456 100644 --- a/docs/ce/getting-started/with-opentofu.mdx +++ b/docs/ce/getting-started/with-opentofu.mdx @@ -63,6 +63,7 @@ This file contains Digger configuration and needs to be placed at the root level projects: - name: production dir: prod + opentofu: true ```