1
1
@description ('API Management DB account name' )
2
2
param apimName string
3
3
param appInsightsName string
4
+ @secure ()
4
5
param appInsightsInstrumentationKey string
5
6
param resourceTags object
6
7
@@ -22,7 +23,7 @@ var location = resourceGroup().location
22
23
var publisherEmail =
'[email protected] '
23
24
var publisherName = 'Company Name'
24
25
25
- resource apiManagement 'Microsoft.ApiManagement/service@2021-01 -01-preview ' = {
26
+ resource apiManagement 'Microsoft.ApiManagement/service@2021-08 -01' = {
26
27
name : apimName
27
28
location : location
28
29
tags : resourceTags
@@ -33,6 +34,23 @@ resource apiManagement 'Microsoft.ApiManagement/service@2021-01-01-preview' = {
33
34
properties : {
34
35
publisherEmail : publisherEmail
35
36
publisherName : publisherName
37
+ customProperties : {
38
+ 'Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10' : 'False'
39
+ 'Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11' : 'False'
40
+ 'Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30' : 'False'
41
+ 'Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10' : 'False'
42
+ 'Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11' : 'False'
43
+ 'Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30' : 'False'
44
+ 'Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2' : 'True'
45
+ 'Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168' : 'False'
46
+ 'Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TLS_RSA_WITH_AES_128_CBC_SHA' : 'False'
47
+ 'Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TLS_RSA_WITH_AES_256_CBC_SHA' : 'False'
48
+ 'Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TLS_RSA_WITH_AES_128_CBC_SHA256' : 'False'
49
+ 'Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA' : 'False'
50
+ 'Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TLS_RSA_WITH_AES_256_CBC_SHA256' : 'False'
51
+ 'Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA' : 'False'
52
+ 'Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TLS_RSA_WITH_AES_128_GCM_SHA256' : 'False'
53
+ }
36
54
}
37
55
identity : {
38
56
type : 'SystemAssigned'
0 commit comments