@mdervovic
not sure why the file didn't get attached last time. Attaching it again in the above post. Its WFAUtil.txt, download and rename it to WFAutil.pm
You can also try the below command code and see that the actual credentials are returned.
##Begin Code
use Getopt::Long;
use NaServer;
use WFAUtil;
##Modify the below as per your Cluster or Controller.
my $Cluster="rajarams-azure-172-30-17-140";
my $wfa_util = WFAUtil->new();
$wfa_util->sendLog('INFO', 'Getting credentials for cluster: ' . $Cluster);
my @creds = $wfa_util->getCredentials($Cluster);
my $user = $creds[0];
my $pass = $creds[1];
$wfa_util->sendLog('INFO', "User: $user ; Pass: $pass");
##End code
sinhaa
If this post resolved your issue, help others by selecting ACCEPT AS SOLUTION or adding a KUDO.