mirror of
https://github.com/coder/coder.git
synced 2025-07-13 21:36:50 +00:00
feat: enable Terraform debug mode via deployment configuration (#8260)
This commit is contained in:
@ -196,6 +196,7 @@ curl -X GET http://coder-server:8080/api/v2/deployment/config \
|
||||
"disable_password_auth": true,
|
||||
"disable_path_apps": true,
|
||||
"disable_session_expiry_refresh": true,
|
||||
"enable_terraform_debug_mode": true,
|
||||
"experiments": ["string"],
|
||||
"git_auth": {
|
||||
"value": [
|
||||
|
@ -1873,6 +1873,7 @@ AuthorizationObject can represent a "set" of objects, such as: all workspaces in
|
||||
"disable_password_auth": true,
|
||||
"disable_path_apps": true,
|
||||
"disable_session_expiry_refresh": true,
|
||||
"enable_terraform_debug_mode": true,
|
||||
"experiments": ["string"],
|
||||
"git_auth": {
|
||||
"value": [
|
||||
@ -2204,6 +2205,7 @@ AuthorizationObject can represent a "set" of objects, such as: all workspaces in
|
||||
"disable_password_auth": true,
|
||||
"disable_path_apps": true,
|
||||
"disable_session_expiry_refresh": true,
|
||||
"enable_terraform_debug_mode": true,
|
||||
"experiments": ["string"],
|
||||
"git_auth": {
|
||||
"value": [
|
||||
@ -2398,6 +2400,7 @@ AuthorizationObject can represent a "set" of objects, such as: all workspaces in
|
||||
| `disable_password_auth` | boolean | false | | |
|
||||
| `disable_path_apps` | boolean | false | | |
|
||||
| `disable_session_expiry_refresh` | boolean | false | | |
|
||||
| `enable_terraform_debug_mode` | boolean | false | | |
|
||||
| `experiments` | array of string | false | | |
|
||||
| `git_auth` | [clibase.Struct-array_codersdk_GitAuthConfig](#clibasestruct-array_codersdk_gitauthconfig) | false | | |
|
||||
| `http_address` | string | false | | Http address is a string because it may be set to zero to disable. |
|
||||
|
@ -223,6 +223,17 @@ Disable workspace apps that are not served from subdomains. Path-based apps can
|
||||
|
||||
Disable automatic session expiry bumping due to activity. This forces all sessions to become invalid after the session expiry duration has been reached.
|
||||
|
||||
### --enable-terraform-debug-mode
|
||||
|
||||
| | |
|
||||
| ----------- | ----------------------------------------------------------- |
|
||||
| Type | <code>bool</code> |
|
||||
| Environment | <code>$CODER_ENABLE_TERRAFORM_DEBUG_MODE</code> |
|
||||
| YAML | <code>introspection.logging.enableTerraformDebugMode</code> |
|
||||
| Default | <code>false</code> |
|
||||
|
||||
Allow administrators to enable Terraform debug output.
|
||||
|
||||
### --swagger-enable
|
||||
|
||||
| | |
|
||||
|
Reference in New Issue
Block a user