From 61559f6a96b2718e7aff5c91f77e270b98fbc066 Mon Sep 17 00:00:00 2001 From: Steven Hodges <127215833+shodges-vermeer@users.noreply.github.com> Date: Thu, 13 Apr 2023 12:38:39 -0500 Subject: [PATCH] MSDNS: Document pssession options (#2273) --- documentation/providers/msdns.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/documentation/providers/msdns.md b/documentation/providers/msdns.md index 8de161555..49fd73667 100644 --- a/documentation/providers/msdns.md +++ b/documentation/providers/msdns.md @@ -31,6 +31,8 @@ along with other settings: * `dnsserver`: (optional) the name of the Microsoft DNS Server to communicate with. * `pssession`: (optional) the name of the PowerShell PSSession host to run commands on. +* `psusername`: (optional) the username to connect to the PowerShell PSSession host. +* `pspassword`: (optional) the password to connect to the PowerShell PSSession host. Example: @@ -40,7 +42,9 @@ Example: "msdns": { "TYPE": "MSDNS", "dnsserver": "ny-dc01", - "pssession": "mywindowshost" + "pssession": "mywindowshost", + "psusername": "mywindowsusername", + "pspassword": "mysupersecurepassword" } } ```