Hi,
Before I post the full details of what I’m seeing, can I confirm that when a bash script is executed on a linux server, it should be possible to obtain the value of a sensitive variable via:
get_octopusvariable “the_variable_name”
E.g., given an in-scope, sensitive variable named “qwerty” with value “uiop”,
and a script that has:
value=get_octopusvariable "qwerty"
echo “variable length: ${#value}”
should output:
variable length: 4
I use the length as an example because I understand the value is normally masked by some other masking process.