We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 9212160 + 8fa7e42 commit 5be8c9bCopy full SHA for 5be8c9b
src/InfrastructureAsCode/main.bicep
@@ -100,6 +100,20 @@ resource appServiceApp 'Microsoft.Web/sites@2020-12-01' = {
100
}
101
102
103
+resource redisCache 'Microsoft.Cache/Redis@2022-06-01' = {
104
+ name: '${uniqueString(resourceGroup().id)}-redis'
105
+ location: location
106
+ properties: {
107
+ sku: {
108
+ name: 'Basic'
109
+ family: 'C'
110
+ capacity: 0
111
+ }
112
+ enableNonSslPort: false
113
+ minimumTlsVersion: '1.2'
114
115
+}
116
+
117
output application_name string = appServiceApp.name
118
output application_url string = appServiceApp.properties.hostNames[0]
119
output container_registry_name string = containerRegistry.name
0 commit comments