Closed arkadiuszmigalaperform closed 5 years ago
Hi @arkadiuszmigalaperform, what you are receiving on terraform side? An empty string? Does the variable exists? Can you check if it is working for example using the following:
test:
image: alpine
commands:
- echo "VERSION_TAG=${VERSION_TAG}"
Above example is not working and it's impossible with Drone 0.8 which I'm using. Brad answers here: https://discourse.drone.io/t/accessing-deploy-params-in-pipeline/5253
I'm using Drone 0.8
While invoking drone deploy I want to pass custom parameter e.g. VERSION_TAG to tell which TAG should be used for deployment.
So I invoke it by dronecli:
But I'm unable to access it in standard way in plugin:
was trying also: $VERSION_TAG $$VERSION_TAG $${VERSION_TAG}
even:
with same results any idea how it can be pass there, is it even possible?