Skip to content

Commit

Permalink
Update integration environment
Browse files Browse the repository at this point in the history
  • Loading branch information
Eduard Keilholz committed Feb 9, 2024
1 parent 937ecaa commit 43c941d
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions infrastructure/resources.bicep
Original file line number Diff line number Diff line change
Expand Up @@ -159,6 +159,37 @@ resource containerAppEnvironments 'Microsoft.App/managedEnvironments@2023-05-01'
}
zoneRedundant: false
}
resource stateStoreComponent 'daprComponents' = {
name: 'statestore'
properties: {
componentType: 'state.redis'
version: 'v1'
secrets: [
{
name: 'redispassword'
value: redisCache.listKeys().primaryKey
}
]
metadata: [
{
name: 'redisHost'
value: redisCache.properties.hostName
}
{
name: 'redisDB'
value: '0'
}
{
name: 'redisPassword'
secretRef: 'redispassword'
}
{
name: 'enableTLS'
value: 'true'
}
]
}
}
}

resource appConfigurationDataReaderRoleDefinition 'Microsoft.Authorization/roleDefinitions@2022-04-01' existing = {
Expand Down

0 comments on commit 43c941d

Please sign in to comment.