Skip to content

Commit

Permalink
docs: option recommended since we added a workaround
Browse files Browse the repository at this point in the history
  • Loading branch information
alikhajeh1 committed Dec 7, 2021
1 parent e7968ab commit 3136317
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ The following steps assume a simple Terraform directory is being used, we recomm
- name: Install terraform
uses: hashicorp/setup-terraform@v1
with:
terraform_wrapper: false # This is required so the `terraform show` command outputs valid JSON
terraform_wrapper: false # This is recommended so the `terraform show` command outputs valid JSON

# IMPORTANT: add any required steps here to setup cloud credentials so Terraform can run

Expand Down
4 changes: 2 additions & 2 deletions examples/multi-project/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
- name: Install Terraform
uses: hashicorp/setup-terraform@v1
with:
terraform_wrapper: false # This is required so the `terraform show` command outputs valid JSON
terraform_wrapper: false # This is recommended so the `terraform show` command outputs valid JSON

# IMPORTANT: add any required steps here to setup cloud credentials so Terraform can run

Expand Down Expand Up @@ -66,7 +66,7 @@ jobs:
- name: Install Terraform
uses: hashicorp/setup-terraform@v1
with:
terraform_wrapper: false # This is required so the `terraform show` command outputs valid JSON
terraform_wrapper: false # This is recommended so the `terraform show` command outputs valid JSON

# IMPORTANT: add any required steps here to setup cloud credentials so Terraform can run

Expand Down
2 changes: 1 addition & 1 deletion examples/multi-terraform-workspace/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
- name: Install Terraform
uses: hashicorp/setup-terraform@v1
with:
terraform_wrapper: false # This is required so the `terraform show` command outputs valid JSON
terraform_wrapper: false # This is recommended so the `terraform show` command outputs valid JSON

# IMPORTANT: add any required steps here to setup cloud credentials so Terraform can run

Expand Down
2 changes: 1 addition & 1 deletion examples/private-terraform-module/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
- name: Install terraform
uses: hashicorp/setup-terraform@v1
with:
terraform_wrapper: false # This is required so the `terraform show` command outputs valid JSON
terraform_wrapper: false # This is recommended so the `terraform show` command outputs valid JSON

# IMPORTANT: add any required steps here to setup cloud credentials so Terraform can run

Expand Down
2 changes: 1 addition & 1 deletion examples/terraform-cloud-enterprise/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
- name: Install terraform
uses: hashicorp/setup-terraform@v1
with:
terraform_wrapper: false # This is required so the `terraform show` command outputs valid JSON
terraform_wrapper: false # This is recommended so the `terraform show` command outputs valid JSON
cli_config_credentials_token: $${{ secrets.TFC_TOKEN }}
# cli_config_credentials_hostname: my-tfe-host.com # For Terraform Enterprise users only

Expand Down
2 changes: 1 addition & 1 deletion examples/terraform-directory/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
- name: Install terraform
uses: hashicorp/setup-terraform@v1
with:
terraform_wrapper: false # This is required so the `terraform show` command outputs valid JSON
terraform_wrapper: false # This is recommended so the `terraform show` command outputs valid JSON

# IMPORTANT: add any required steps here to setup cloud credentials so Terraform can run

Expand Down
2 changes: 1 addition & 1 deletion examples/terragrunt/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
- name: Install Terraform
uses: hashicorp/setup-terraform@v1
with:
terraform_wrapper: false # This is required so the `terraform show` command outputs valid JSON
terraform_wrapper: false # This is recommended so the `terraform show` command outputs valid JSON

- name: Setup Terragrunt
uses: autero1/action-terragrunt@v1.1.0
Expand Down

0 comments on commit 3136317

Please sign in to comment.