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
Trying out the new "ephemeral parameters" feature, I made this parameter in my template ephemeral:
data "coder_parameter" "rebuild_devcontainer" {
name = "rebuild_devcontainer"
display_name = "Force devcontainer rebuild"
type = "bool"
ephemeral = true
default = "false"
mutable = true
order = 7
}
When I select the non-default value "true" for this parameter in the "Build Options" popup under "Restart", my provider's Update method still sees a false value in the plan.
However, this works as expected if I instead go to Settings->Parameters and change the value there.
@mtojek Yes, but maybe it is not a regression because this happens when the user restarts the workspace and has to confirm the restart on the dialog. Since we usually have the "Don't ask me again" option enabled we probably missed this path during our QAs.
Trying out the new "ephemeral parameters" feature, I made this parameter in my template ephemeral:
When I select the non-default value "true" for this parameter in the "Build Options" popup under "Restart", my provider's
Update
method still sees afalse
value in the plan.However, this works as expected if I instead go to Settings->Parameters and change the value there.
cc @mtojek
The text was updated successfully, but these errors were encountered: