-
Notifications
You must be signed in to change notification settings - Fork 409
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
a597014
commit 928b893
Showing
17 changed files
with
103 additions
and
125 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,7 +16,7 @@ This module deploys an API Management Service. The default deployment is set to | |
|
||
| Resource Type | API Version | | ||
| :-- | :-- | | ||
| `Microsoft.ApiManagement/service` | [2023-05-01-preview](https://learn.microsoft.com/en-us/azure/templates/Microsoft.ApiManagement/2023-05-01-preview/service) | | ||
| `Microsoft.ApiManagement/service` | [2024-05-01](https://learn.microsoft.com/en-us/azure/templates/Microsoft.ApiManagement/2024-05-01/service) | | ||
| `Microsoft.ApiManagement/service/apis` | [2022-08-01](https://learn.microsoft.com/en-us/azure/templates/Microsoft.ApiManagement/2022-08-01/service/apis) | | ||
| `Microsoft.ApiManagement/service/apis/diagnostics` | [2022-08-01](https://learn.microsoft.com/en-us/azure/templates/Microsoft.ApiManagement/2022-08-01/service/apis/diagnostics) | | ||
| `Microsoft.ApiManagement/service/apis/policies` | [2022-08-01](https://learn.microsoft.com/en-us/azure/templates/Microsoft.ApiManagement/2022-08-01/service/apis/policies) | | ||
|
@@ -223,6 +223,7 @@ module service 'br/public:avm/res/api-management/service:<version>' = { | |
publisherEmail: '[email protected]' | ||
publisherName: 'az-amorg-x-001' | ||
// Non-required parameters | ||
enableDeveloperPortal: true | ||
location: '<location>' | ||
sku: 'Developer' | ||
} | ||
|
@@ -252,6 +253,9 @@ module service 'br/public:avm/res/api-management/service:<version>' = { | |
"value": "az-amorg-x-001" | ||
}, | ||
// Non-required parameters | ||
"enableDeveloperPortal": { | ||
"value": true | ||
}, | ||
"location": { | ||
"value": "<location>" | ||
}, | ||
|
@@ -277,6 +281,7 @@ param name = 'apisdev001' | |
param publisherEmail = '[email protected]' | ||
param publisherName = 'az-amorg-x-001' | ||
// Non-required parameters | ||
param enableDeveloperPortal = true | ||
param location = '<location>' | ||
param sku = 'Developer' | ||
``` | ||
|
@@ -337,10 +342,6 @@ module service 'br/public:avm/res/api-management/service:<version>' = { | |
displayName: 'Echo API' | ||
name: 'echo-api' | ||
path: 'echo' | ||
protocols: [ | ||
'http' | ||
'https' | ||
] | ||
serviceUrl: 'http://echoapi.cloudapp.net/api' | ||
} | ||
] | ||
|
@@ -577,10 +578,6 @@ module service 'br/public:avm/res/api-management/service:<version>' = { | |
"displayName": "Echo API", | ||
"name": "echo-api", | ||
"path": "echo", | ||
"protocols": [ | ||
"http", | ||
"https" | ||
], | ||
"serviceUrl": "http://echoapi.cloudapp.net/api" | ||
} | ||
] | ||
|
@@ -843,10 +840,6 @@ param apis = [ | |
displayName: 'Echo API' | ||
name: 'echo-api' | ||
path: 'echo' | ||
protocols: [ | ||
'http' | ||
'https' | ||
] | ||
serviceUrl: 'http://echoapi.cloudapp.net/api' | ||
} | ||
] | ||
|
@@ -1039,6 +1032,7 @@ module service 'br/public:avm/res/api-management/service:<version>' = { | |
publisherEmail: '[email protected]' | ||
publisherName: 'az-amorg-x-001' | ||
// Non-required parameters | ||
enableDeveloperPortal: true | ||
location: '<location>' | ||
sku: 'BasicV2' | ||
} | ||
|
@@ -1068,6 +1062,9 @@ module service 'br/public:avm/res/api-management/service:<version>' = { | |
"value": "az-amorg-x-001" | ||
}, | ||
// Non-required parameters | ||
"enableDeveloperPortal": { | ||
"value": true | ||
}, | ||
"location": { | ||
"value": "<location>" | ||
}, | ||
|
@@ -1093,6 +1090,7 @@ param name = 'apisv2s001' | |
param publisherEmail = '[email protected]' | ||
param publisherName = 'az-amorg-x-001' | ||
// Non-required parameters | ||
param enableDeveloperPortal = true | ||
param location = '<location>' | ||
param sku = 'BasicV2' | ||
``` | ||
|
@@ -1142,9 +1140,6 @@ module service 'br/public:avm/res/api-management/service:<version>' = { | |
displayName: 'Echo API' | ||
name: 'echo-api' | ||
path: 'echo' | ||
protocols: [ | ||
'https' | ||
] | ||
serviceUrl: 'https://echoapi.cloudapp.net/api' | ||
} | ||
] | ||
|
@@ -1168,8 +1163,8 @@ module service 'br/public:avm/res/api-management/service:<version>' = { | |
{ | ||
name: 'backend' | ||
tls: { | ||
validateCertificateChain: true | ||
validateCertificateName: true | ||
validateCertificateChain: false | ||
validateCertificateName: false | ||
} | ||
url: 'https://echoapi.cloudapp.net/api' | ||
} | ||
|
@@ -1356,9 +1351,6 @@ module service 'br/public:avm/res/api-management/service:<version>' = { | |
"displayName": "Echo API", | ||
"name": "echo-api", | ||
"path": "echo", | ||
"protocols": [ | ||
"https" | ||
], | ||
"serviceUrl": "https://echoapi.cloudapp.net/api" | ||
} | ||
] | ||
|
@@ -1386,8 +1378,8 @@ module service 'br/public:avm/res/api-management/service:<version>' = { | |
{ | ||
"name": "backend", | ||
"tls": { | ||
"validateCertificateChain": true, | ||
"validateCertificateName": true | ||
"validateCertificateChain": false, | ||
"validateCertificateName": false | ||
}, | ||
"url": "https://echoapi.cloudapp.net/api" | ||
} | ||
|
@@ -1592,9 +1584,6 @@ param apis = [ | |
displayName: 'Echo API' | ||
name: 'echo-api' | ||
path: 'echo' | ||
protocols: [ | ||
'https' | ||
] | ||
serviceUrl: 'https://echoapi.cloudapp.net/api' | ||
} | ||
] | ||
|
@@ -1618,8 +1607,8 @@ param backends = [ | |
{ | ||
name: 'backend' | ||
tls: { | ||
validateCertificateChain: true | ||
validateCertificateName: true | ||
validateCertificateChain: false | ||
validateCertificateName: false | ||
} | ||
url: 'https://echoapi.cloudapp.net/api' | ||
} | ||
|
@@ -1789,6 +1778,7 @@ param tags = { | |
| [`diagnosticSettings`](#parameter-diagnosticsettings) | array | The diagnostic settings of the service. | | ||
| [`disableGateway`](#parameter-disablegateway) | bool | Property only valid for an API Management service deployed in multiple locations. This can be used to disable the gateway in master region. | | ||
| [`enableClientCertificate`](#parameter-enableclientcertificate) | bool | Property only meant to be used for Consumption SKU Service. This enforces a client certificate to be presented on each request to the gateway. This also enables the ability to authenticate the certificate in the policy on the gateway. | | ||
| [`enableDeveloperPortal`](#parameter-enabledeveloperportal) | bool | Enable the Developer Portal. The developer portal is not supported on the Consumption SKU. | | ||
| [`enableTelemetry`](#parameter-enabletelemetry) | bool | Enable/Disable usage telemetry for module. | | ||
| [`hostnameConfigurations`](#parameter-hostnameconfigurations) | array | Custom hostname configuration of the API Management service. | | ||
| [`identityProviders`](#parameter-identityproviders) | array | Identity providers. | | ||
|
@@ -2088,6 +2078,14 @@ Property only meant to be used for Consumption SKU Service. This enforces a clie | |
- Type: bool | ||
- Default: `False` | ||
|
||
### Parameter: `enableDeveloperPortal` | ||
|
||
Enable the Developer Portal. The developer portal is not supported on the Consumption SKU. | ||
|
||
- Required: No | ||
- Type: bool | ||
- Default: `False` | ||
|
||
### Parameter: `enableTelemetry` | ||
|
||
Enable/Disable usage telemetry for module. | ||
|
@@ -2457,7 +2455,7 @@ This section gives you an overview of all local-referenced module files (i.e., o | |
|
||
| Reference | Type | | ||
| :-- | :-- | | ||
| `br/public:avm/utl/types/avm-common-types:0.4.0` | Remote reference | | ||
| `br/public:avm/utl/types/avm-common-types:0.4.1` | Remote reference | | ||
|
||
## Notes | ||
|
||
|
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
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
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
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
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
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
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
Oops, something went wrong.