in reply to Environment Variables in YAML

No. But you could do that after reading the YAML file, using s///. Something like this:

#!/usr/bin/perl use strict; use warnings; use Data::Dumper; my $hashref={ ABC => 123, PATH => '$ENV{PATH}' }; print Dumper($hashref); s/\$ENV{(.+?)}/$ENV{$1}/g for values %$hashref; print Dumper($hashref);

Alexander

--
Today I will gladly share my knowledge and experience, for there are no sweeter words than "I told you so". ;-)