Skip to content

Commit 808b834

Browse files
Merge pull request #12 from briandenicola/azure-redis
Azure redis
2 parents 7294e53 + 66329a7 commit 808b834

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

src/InfrastructureAsCode/main.bicep

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,6 +86,10 @@ resource webApp 'Microsoft.Web/sites@2022-09-01' = {
8686
name: 'APPINSIGHTS_INSTRUMENTATIONKEY'
8787
value: appInsights.properties.InstrumentationKey
8888
}
89+
{
90+
name: 'APPLICATIONINSIGHTS_CONNECTION_STRING'
91+
value: appInsights.properties.ConnectionString
92+
}
8993
]
9094
}
9195
}
@@ -99,7 +103,7 @@ resource redisCache 'Microsoft.Cache/Redis@2021-06-01' = {
99103
sku: {
100104
name: 'Basic'
101105
family: 'C'
102-
capacity: '0'
106+
capacity: 0
103107
}
104108
enableNonSslPort: false
105109
}

0 commit comments

Comments
 (0)