MSDNS: Remove pssession from docs (it doesn't work) (#2689)

This commit is contained in:
Tom Limoncelli 2023-12-06 14:45:51 -05:00 committed by GitHub
parent 8541fb8510
commit 742eaaf75f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -13,8 +13,6 @@ DNSControl will use `New-PSSession` to execute the commands remotely if
DNS and DNSControl are both updating a zone, there will be DNS and DNSControl are both updating a zone, there will be
unhappiness. DNSControl will blindly remove the dynamic records unhappiness. DNSControl will blindly remove the dynamic records
unless precautions such as `IGNORE*` and `NO_PURGE` are in use. unless precautions such as `IGNORE*` and `NO_PURGE` are in use.
* This is a new provider and has not been tested extensively,
especially the `pssession` feature.
# Running on Non-Windows systems # Running on Non-Windows systems
@ -30,7 +28,6 @@ To use this provider, add an entry to `creds.json` with `TYPE` set to `MSDNS`
along with other settings: along with other settings:
* `dnsserver`: (optional) the name of the Microsoft DNS Server to communicate with. * `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. * `psusername`: (optional) the username to connect to the PowerShell PSSession host.
* `pspassword`: (optional) the password to connect to the PowerShell PSSession host. * `pspassword`: (optional) the password to connect to the PowerShell PSSession host.
@ -42,7 +39,6 @@ Example:
"msdns": { "msdns": {
"TYPE": "MSDNS", "TYPE": "MSDNS",
"dnsserver": "ny-dc01", "dnsserver": "ny-dc01",
"pssession": "mywindowshost",
"psusername": "mywindowsusername", "psusername": "mywindowsusername",
"pspassword": "mysupersecurepassword" "pspassword": "mysupersecurepassword"
} }