Skip to content

Commit

Permalink
fix: Only nonsensitive() the user_data output if fleet is enabled
Browse files Browse the repository at this point in the history
  • Loading branch information
JulianCBC committed Oct 27, 2023
1 parent aff2024 commit a8e624e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion outputs.tf
Original file line number Diff line number Diff line change
Expand Up @@ -60,5 +60,5 @@ output "runner_user_data" {

output "runner_config_toml_rendered" {
description = "The rendered config.toml given to the Runner Manager."
value = local.template_runner_config
value = var.runner_worker_docker_machine_fleet.enable == true ? nonsensitive(local.template_runner_config) : local.template_runner_config
}

0 comments on commit a8e624e

Please sign in to comment.