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
Copy file name to clipboardExpand all lines: terraform/all-in-one/variables.tf
+7-1Lines changed: 7 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -27,9 +27,15 @@ variable "target_host" {
27
27
description="DNS host to deploy to"
28
28
}
29
29
30
+
variable"install_user" {
31
+
type=string
32
+
description="SSH user used to connect to the target_host, before installing NixOS. If null than the value of `target_host` is used"
33
+
default=null
34
+
}
35
+
30
36
variable"target_user" {
31
37
type=string
32
-
description="SSH user used to connect to the target_host, before installing NixOS"
38
+
description="SSH user used to connect to the target_host after installing NixOS. If install_user is not set than this user is also used before installing."
0 commit comments