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
-`auth` (String) The authentication type the agent will use. Must be one of: "token", "google-instance-identity", "aws-instance-identity", "azure-instance-identity".
50
50
-`connection_timeout` (Number) Time in seconds until the agent is marked as timed out when a connection with the server cannot be established. A value of zero never marks the agent as timed out.
51
-
-`delay_login_until_ready` (Boolean) This option defines whether or not user logins to the workspace agent are delayed until the agent is ready. When disabled, users may see an incomplete workspace upon logging in.
52
51
-`dir` (String) The starting directory when a user creates a shell session. Defaults to $HOME.
53
52
-`env` (Map of String) A mapping of environment variables to set inside the workspace.
53
+
-`login_before_ready` (Boolean) This option defines whether or not the user can (by default) login to the workspace before it is ready. Ready means that e.g. the startup_script is done and has exited. When enabled, users may see an incomplete workspace when logging in.
54
54
-`motd_file` (String) The path to a file within the workspace containing a message to display to users when they login via SSH. A typical value would be /etc/motd.
55
55
-`shutdown_script` (String) A script to run before the agent is stopped. The script should exit when it is done to signal that the workspace can be stopped.
56
56
-`startup_script` (String) A script to run after the agent starts. The script should exit when it is done to signal that the agent is ready.
Description:"The path to a file within the workspace containing a message to display to users when they login via SSH. A typical value would be /etc/motd.",
124
124
},
125
-
"delay_login_until_ready": {
125
+
"login_before_ready": {
126
126
Type:schema.TypeBool,
127
-
Default:false,// Change default value totrue in a future release.
127
+
Default:true,// Change default value tofalse in a future release.
128
128
ForceNew:true,
129
129
Optional:true,
130
-
Description:"This option defines whether or not userloginsto the workspaceagent are delayed untiltheagent isready. Whendisabled, users may see an incomplete workspaceupon logging in.",
130
+
Description:"This option defines whether or nottheusercan (by default) loginto the workspacebefore it is ready. Ready means that e.g.thestartup_script isdone and has exited. Whenenabled, users may see an incomplete workspacewhen logging in.",