limited-eve-38521
05/20/2021, 3:01 PMtlsSettings: {
certificateType: "ManagedCertificate",
minimumTlsVersion: "TLS12",
},
But I dont see that with CustomDomain if i want to avoid FrontDoor? https://www.pulumi.com/docs/reference/pkg/azure-native/cdn/customdomain/
I was thinking of combining CustomDomain with ManagedCertificate https://www.pulumi.com/docs/reference/pkg/azure/appservice/managedcertificate/ but don't know how to get the min tls set as well?tall-librarian-49374
05/20/2021, 3:09 PMrich-farmer-40546
05/20/2021, 3:17 PMaz
with --debug
is a great way to also migrate your scripts to pulumi management with azure-native, without the extra overhead that an ARM templates provides, specially with arm template functions that don’t have an equal in pulumi.limited-eve-38521
05/20/2021, 3:23 PM"resources": [
{
"type": "Microsoft.Cdn/profiles/endpoints/customdomains",
"apiVersion": "2020-09-01",
"name": "[concat(parameters('profiles_test_profile_name'), '/test-endpoint/cdn-my-domain-com')]",
"dependsOn": [
"[resourceId('Microsoft.Cdn/profiles/endpoints', parameters('profiles_test_profile_name'), 'test-endpoint')]"
],
"properties": {
"hostName": "<http://cdn.my-domain.com|cdn.my-domain.com>"
}
},