Open
Description
Currently a separate API endpoint has to be called to enable CustomHTTPS
with custom domains.
This is not ideal as this prevents IaC tooling such as ARM templates, Pulumi and Terraform from using this feature.
I suggest to extend the request body of put to accommodate these properties:
before:
{
"properties": {
"hostName": "www.someDomain.net"
}
}
after:
{
"properties": {
"hostName": "www.someDomain.net",
"customHttpsProvisioning": {
"certificateSource": "cdn"
...
}
}
}
Activity