Skip to content

Commit

Permalink
Update app-statestore-secret.bicep
Browse files Browse the repository at this point in the history
Signed-off-by: Yetkin Timocin <[email protected]>
  • Loading branch information
ytimocin authored Sep 16, 2024
1 parent 2511394 commit 8630ab2
Showing 1 changed file with 0 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ param application string
@description('The ID of your Radius environment. Automatically injected by the rad CLI.')
param environment string

//CONTAINER
resource demo 'Applications.Core/containers@2023-10-01-preview' = {
name: 'demo'
properties: {
Expand All @@ -33,19 +32,15 @@ resource demo 'Applications.Core/containers@2023-10-01-preview' = {
}
}
}
//CONTAINER

// REDIS
resource redis 'Applications.Datastores/redisCaches@2023-10-01-preview' = {
name: 'demo-redis-manual'
properties: {
environment: environment
application: application
}
}
// REDIS

//STATESTORE
resource stateStore 'Applications.Dapr/stateStores@2023-10-01-preview' = {
name: 'demo-statestore'
properties: {
Expand Down Expand Up @@ -73,14 +68,11 @@ resource stateStore 'Applications.Dapr/stateStores@2023-10-01-preview' = {
}
}
}
//STATESTORE

//SECRETSTORE
resource secretstore 'Applications.Dapr/secretStores@2023-10-01-preview' = {
name: 'secretstore'
properties: {
environment: environment
application: application
}
}
//SECRETSTORE

0 comments on commit 8630ab2

Please sign in to comment.