From 6fccd3c75f83b330c87fa5c883f6b98bc678e433 Mon Sep 17 00:00:00 2001 From: Maxime Noel Date: Thu, 3 Oct 2024 15:11:02 +1300 Subject: [PATCH] For sshminion, we can't set the server_hostname and so can't auto connect to master. This value should be false by default. --- modules/sshminion/variables.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/sshminion/variables.tf b/modules/sshminion/variables.tf index e6a65fe67..4df14e104 100644 --- a/modules/sshminion/variables.tf +++ b/modules/sshminion/variables.tf @@ -15,7 +15,7 @@ variable "product_version" { variable "auto_connect_to_master" { description = "whether this minion should automatically connect to the Salt Master upon deployment" - default = true + default = false } variable "use_os_released_updates" {