Skip to content

Commit 13d4e37

Browse files
committed
install.md WIP
1 parent dcbd054 commit 13d4e37

File tree

2 files changed

+8
-3
lines changed

2 files changed

+8
-3
lines changed

INSTALL.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,3 +4,6 @@ az-firewall-mod once installed in your environment, will result in the following
44

55
![architecture](./images/architecture.png)
66

7+
i passi da seguire per installare nel proprio ambiente una copia privata di az-firewall-man sono i seguenti:
8+
9+
* fork the public repo

bicep/setup.bicep

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -47,8 +47,7 @@ resource staticWebAppSettings 'Microsoft.Web/staticSites/config@2023-01-01' = {
4747
name: 'appsettings'
4848
properties: {
4949
// Application Insights settings
50-
APPLICATION_INSIGHTS_CONNECTION_STRING: appInsights.properties.ConnectionString
51-
APPLICATIONINSIGHTS_CONNECTION_STRING: appInsights.properties.ConnectionString
50+
APPLICATIONINSIGHTS_CONNECTION_STRING: appInsights.properties.ConnectionString
5251

5352
// Azure Maps settings
5453
ip_api_key: mapsAccount.listKeys().primaryKey
@@ -60,6 +59,9 @@ resource staticWebAppSettings 'Microsoft.Web/staticSites/config@2023-01-01' = {
6059
aoai_endpoint: openAiAccount.properties.endpoint
6160
aoai_deployment: gpt4oDeploymentName
6261

62+
llm_throttling_calls: '5'
63+
llm_throttling_window_milliseconds: '1000'
64+
6365
// Build date timestamp
6466
BUILD_DATE: baseTime
6567
}
@@ -100,7 +102,7 @@ resource mapsAccount 'Microsoft.Maps/accounts@2023-06-01' = {
100102
name: mapsAccountName
101103
location: 'global'
102104
sku: {
103-
name: 'G2' // Using G2 SKU which is suitable for most applications
105+
name: 'G2'
104106
}
105107
properties: {
106108
// Default properties

0 commit comments

Comments
 (0)