You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix: delete the 'runner_config_toml_rendereded' output variable (#1019)
## Description
Due to calls to `nonsensitive` in case the data is sensitive or not
calling the function in the other case, the code gets very complex. The
output variable `runner_config_toml_rendereded` was introduced for
easier debugging, but we still have the option to write the whole Runner
configuration to a local file (`debug.write_runner_config_to_file`).
This "fixers" that issue by just deleting the output variable.
Closes#1018
## Migrations required
Usually not. For debugging purposes, set the
`debug.write_runner_config_to_file` to `true`. The configuration is
written to a file on your local disk (directory `debug/`)
## Verification
Only linted as this is only deleting an output variable.
Copy file name to clipboardExpand all lines: outputs.tf
-5
Original file line number
Diff line number
Diff line change
@@ -57,8 +57,3 @@ output "runner_user_data" {
57
57
description="(Deprecated) The user data of the Gitlab Runner Agent's launch template. Set `var.debug.output_runner_user_data_to_file` to true to write `user_data.sh`."
58
58
value=nonsensitive(local.template_user_data)
59
59
}
60
-
61
-
output"runner_config_toml_rendered" {
62
-
description="The rendered config.toml given to the Runner Manager."
0 commit comments