From db2f7405032efbca8e6491c8aa0817737480a56b Mon Sep 17 00:00:00 2001 From: Matthew Chenette Date: Tue, 9 Jan 2024 10:31:58 -0600 Subject: [PATCH] trying bare bones --- apim.bicep | 54 +++++++++++++++++++++++++++--------------------------- 1 file changed, 27 insertions(+), 27 deletions(-) diff --git a/apim.bicep b/apim.bicep index 68843db..2673daa 100644 --- a/apim.bicep +++ b/apim.bicep @@ -15,33 +15,33 @@ param identity object = { type: 'None' } param properties object = { publisherEmail: 'iron3bromate@gmail.com' publisherName: 'chenette' - notificationSenderEmail: 'apimgmt-noreply@mail.windowsazure.com' - hostnameConfigurations: [ - { - type: 'Proxy' - hostName: 'apim-chenette' - negotiateClientCertificate: false - defaultSslBinding: true - certificateSource: 'BuiltIn' - } - ] - customProperties: { - 'Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11': 'false' - 'Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10': 'false' - 'Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11': 'false' - 'Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10': 'false' - 'Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30': 'false' - 'Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2': 'false' - 'Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168': 'false' - 'Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30': 'false' - } - virtualNetworkType: 'None' - disableGateway: false - natGatewayState: 'Unsupported' - apiVersionConstraint: {} - publicNetworkAccess: 'Enabled' - legacyPortalStatus: 'Enabled' - developerPortalStatus: 'Enabled' + // notificationSenderEmail: 'apimgmt-noreply@mail.windowsazure.com' + // hostnameConfigurations: [ + // { + // type: 'Proxy' + // hostName: 'apim-chenette' + // negotiateClientCertificate: false + // defaultSslBinding: true + // certificateSource: 'BuiltIn' + // } + // ] + // customProperties: { + // 'Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11': 'false' + // 'Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10': 'false' + // 'Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11': 'false' + // 'Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10': 'false' + // 'Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30': 'false' + // 'Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2': 'false' + // 'Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168': 'false' + // 'Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30': 'false' + // } + // virtualNetworkType: 'None' + // disableGateway: false + // natGatewayState: 'Unsupported' + // apiVersionConstraint: {} + // publicNetworkAccess: 'Enabled' + // legacyPortalStatus: 'Enabled' + // developerPortalStatus: 'Enabled' } resource apim_chenette 'Microsoft.ApiManagement/service@2023-03-01-preview' = {