We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
updateEnvAttribute is a step that allows to modify environment deployment properties, visible on environment details screen.
Most popular use-case: provide deployed application url.
steps { provisionVms { //... exportTo = ["virtualMachines": "genesisVM"] } updateEnvAttributes { precedingPhases = ["provision"] phase = "finish" items = {[ "appUrl": ["Genesis Application url" : "http://" + genesisVM[0].ip.address + ":8080/" ] ]} } }