-
Notifications
You must be signed in to change notification settings - Fork 5.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Enable SSL on custom domains using users certificate or CDN managed c…
…ertificate (#5276)
- Loading branch information
1 parent
8360996
commit 5305cfa
Showing
4 changed files
with
228 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
16 changes: 0 additions & 16 deletions
16
...rce-manager/Microsoft.Cdn/stable/2017-10-12/examples/CustomDomains_EnableCustomHttps.json
This file was deleted.
Oops, something went wrong.
30 changes: 30 additions & 0 deletions
30
...er/Microsoft.Cdn/stable/2017-10-12/examples/CustomDomains_EnableCustomHttpsUsingBYOC.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
{ | ||
"parameters": { | ||
"api-version": "2017-10-12", | ||
"subscriptionId": "subid", | ||
"resourceGroupName": "RG", | ||
"profileName": "profile1", | ||
"endpointName": "endpoint1", | ||
"customDomainName": "www-someDomain-net", | ||
"customHttpsParameters": { | ||
"certificateSource": "AzureKeyVault", | ||
"protocolType": "ServerNameIndication", | ||
"certificateSourceParameters": { | ||
"OData.type":"#Microsoft.Azure.Cdn.Models.KeyVaultCertificateSourceParameters", | ||
"subscriptionId":"subid", | ||
"resourceGroupName":"RG", | ||
"vaultName":"kv", | ||
"secretName" : "secret1", | ||
"secretVersion" :"00000000-0000-0000-0000-000000000000", | ||
"updateRule": "NoAction", | ||
"deleteRule": "NoAction" | ||
} | ||
} | ||
}, | ||
"responses": { | ||
"200": { | ||
"body": { | ||
} | ||
} | ||
} | ||
} |
24 changes: 24 additions & 0 deletions
24
...stable/2017-10-12/examples/CustomDomains_EnableCustomHttpsUsingCDNManagedCertificate.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
{ | ||
"parameters": { | ||
"api-version": "2017-10-12", | ||
"subscriptionId": "subid", | ||
"resourceGroupName": "RG", | ||
"profileName": "profile1", | ||
"endpointName": "endpoint1", | ||
"customDomainName": "www-someDomain-net", | ||
"customHttpsParameters": { | ||
"certificateSource": "Cdn", | ||
"protocolType": "ServerNameIndication", | ||
"certificateSourceParameters": { | ||
"OData.type":"#Microsoft.Azure.Cdn.Models.CdnCertificateSourceParameters", | ||
"certificateType":"Shared" | ||
} | ||
} | ||
}, | ||
"responses": { | ||
"200": { | ||
"body": { | ||
} | ||
} | ||
} | ||
} |