We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Can credential for Windows & Linux node be passed as secret instead of plain text ?
Current supported
# Linux node public key profile linuxProfile: adminUsername: "azureuser" ssh: publicKeys: # SSH Key for node - keyData: | ssh-rsa xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx # Windows node credential profile windowsProfile: adminUsername: "azureuser" adminPassword: "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
Expectation
# Linux node public key profile linuxProfile: adminUsername: "azureuser" ssh: publicKeys: # SSH Key for node - keyData: secret: key: value: # Windows node credential profile windowsProfile: adminUsername: "azureuser" adminPassword: secret: key: value:
The text was updated successfully, but these errors were encountered:
For Linux, the key you're passing there is the publicKey and so isn't secret and thus can't be passed from a secret on purpose.
The WindowsProfile adminpassword should support secret and the fact it doesn't is an oversight which we will fix. I've tagged this as a bug.
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
Can credential for Windows & Linux node be passed as secret instead of plain text ?
Current supported
Expectation
The text was updated successfully, but these errors were encountered: