How can I pass and array of IPs from a Deployment variable to a script in a step?
Hi Moises,
Dynamic variables in the way you've described are unfortunately not yet supported in pipelines. We have a feature request raised with our developers, however, that you may Watch to receive future updates and Vote for to improve its visibility with regard to customer demand:
You could write a shell script to assign an array of values to an environment variable, however, for example:
F="a b c"
for i in ${F}
do
echo $i
done
Hope this helps.
Cheers!
- Ben (Bitbucket Cloud Support)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.