I tried adding both/either of these in my framework.properties file:
framework.winrm-domain=DOMAIN.TLD
framework.winrm-is-domain-member=true
In my node, I have username="${option.username}", or I tried hard-coding a username (only).
Node name is correct, i.e. hostname.domain.tld
No matter what I do with these options it always just uses 'username' not 'username'@DOMAIN.TLD and I get a 401.
If I fully qualify the username i.e. username="username@DOMAIN.TLD" it works, or if I use variable expansion and ${option.username} and set the 'username' option to username@DOMAIN.TLD it works.
Using Rundeck 2.7.2-1
I tried adding both/either of these in my framework.properties file: framework.winrm-domain=DOMAIN.TLD framework.winrm-is-domain-member=true
In my node, I have username="${option.username}", or I tried hard-coding a username (only).
Node name is correct, i.e. hostname.domain.tld
No matter what I do with these options it always just uses 'username' not 'username'@DOMAIN.TLD and I get a 401.
If I fully qualify the username i.e. username="username@DOMAIN.TLD" it works, or if I use variable expansion and ${option.username} and set the 'username' option to username@DOMAIN.TLD it works.
Any ideas?