We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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/" ] ]} } }
There was an error while loading. Please reload this page.