Skip to content

feat: enable Terraform debug mode via deployment configuration #8260

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 12 commits into from
Jun 29, 2023
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
make update-golden-files
  • Loading branch information
mtojek committed Jun 29, 2023
commit 9bd246b39f127ce7ff65ea85e19bce13fcf0f0cc
4 changes: 2 additions & 2 deletions cli/testdata/coder_server_--help.golden
Original file line number Diff line number Diff line change
Expand Up @@ -74,8 +74,8 @@ Use a YAML configuration file when your server launch become unwieldy.
Write out the current server config as YAML to stdout.

Introspection / Logging Options
--disable-terraform-debug-mode bool, $CODER_DISABLE_TERRAFORM_DEBUG_MODE (default: false)
Disable debug mode while processing Terraform templates.
--enable-terraform-debug-mode bool, $CODER_ENABLE_TERRAFORM_DEBUG_MODE (default: false)
Enable debug mode while processing Terraform templates.

--log-human string, $CODER_LOGGING_HUMAN (default: /dev/stderr)
Output human-readable logs to a given file.
Expand Down
4 changes: 2 additions & 2 deletions cli/testdata/server-config.yaml.golden
Original file line number Diff line number Diff line change
Expand Up @@ -197,9 +197,9 @@ introspection:
# Output Stackdriver compatible logs to a given file.
# (default: <unset>, type: string)
stackdriverPath: ""
# Disable debug mode while processing Terraform templates.
# Enable debug mode while processing Terraform templates.
# (default: false, type: bool)
disableTerraformDebugMode: false
enableTerraformDebugMode: false
oauth2:
github:
# Client ID for Login with GitHub.
Expand Down
4 changes: 2 additions & 2 deletions enterprise/cli/testdata/coder_server_--help.golden
Original file line number Diff line number Diff line change
Expand Up @@ -74,8 +74,8 @@ Use a YAML configuration file when your server launch become unwieldy.
Write out the current server config as YAML to stdout.

Introspection / Logging Options
--disable-terraform-debug-mode bool, $CODER_DISABLE_TERRAFORM_DEBUG_MODE (default: false)
Disable debug mode while processing Terraform templates.
--enable-terraform-debug-mode bool, $CODER_ENABLE_TERRAFORM_DEBUG_MODE (default: false)
Enable debug mode while processing Terraform templates.

--log-human string, $CODER_LOGGING_HUMAN (default: /dev/stderr)
Output human-readable logs to a given file.
Expand Down