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
then calling deploySsh server_0 will result in com.typesafe.config.ConfigException$NotResolved exception because the config is only parsed but not resolved. This feature would be useful for example in CI jobs where I want to put parts of the deploy config into environment variables.
Currently this could be worked around by defining deployConfigsLoaded instead of deployResourceConfigFiles (or any other alternatives of that). The fix is pretty easy: call .resolve() in the deployConfigsLoadedTaskKey definition.
Say I have a deploy config like this:
then calling
deploySsh server_0
will result incom.typesafe.config.ConfigException$NotResolved
exception because the config is only parsed but not resolved. This feature would be useful for example in CI jobs where I want to put parts of the deploy config into environment variables.Currently this could be worked around by defining
deployConfigsLoaded
instead ofdeployResourceConfigFiles
(or any other alternatives of that). The fix is pretty easy: call.resolve()
in thedeployConfigsLoaded
TaskKey
definition.I'm using it like this currently:
The text was updated successfully, but these errors were encountered: