I am currently using posh-acme and testing switching over to simplify our management. When we set up DNS Alias, it creates the TXT record in the our acme zone it is for record provided. So, for example if I had the following CNames
- _acme-challenge.stage.mydomain.com → mystagecertproxy.acme.mydomain.com
- _acme-challenge.stage.whitelabel.thridparty.com → thirdparty1stage.acme.mydomain.com
When I run poshacme it would create the TXT record on the following locations based on the configuration .
When reading your documentation, I am not sure if this is the same behavior or instead it would create the text records at
- _acme-challenge.mystagecertproxy.acme.mydomain.com
- _acme-challenge.thirdparty1stage.acme.mydomain.com
Could you clarify what record it would update if I used the following configuration string?(broken out for readability)
*.stage.whitelabel.thridparty.com:thirdparty1stage.acme.mydomain.com;
stage.whitelabel.thridparty.com:thirdparty1stage.acme.mydomain.com;
*.stage.whitelabel.thridparty.com:mystagecertproxy.acme.mydomain.com;
stage.whitelabel.thridparty.com:mystagecertproxy.acme.mydomain.com;