modules
modules copied to clipboard
TLS needs to be set to 1.2 for CloudFlareDynDns
I was getting https 426 errors while running this module. This is due to invoke-restmethod defaulting to TLS 1.0.
You can set this by adding this line of code into your module:
#Set TLS Verson
[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12
Worth noting that it requires restarting the Powershell window to start working again after making this change, at least it did for me.
I noticed a pull request to fix this issue.
That pull request was merged in two days ago by @potatoqualitee