Skip to content

Commit c600a37

Browse files
authored
Merge pull request #80 from cephalin/dev
use key vault for cache secrets
2 parents 15704cc + 88a76d5 commit c600a37

File tree

2 files changed

+192
-119
lines changed

2 files changed

+192
-119
lines changed

infra/main.bicep

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,6 @@ param name string
99
@description('Primary location for all resources')
1010
param location string
1111

12-
@secure()
13-
@description('SQL Server administrator password')
14-
param databasePassword string
15-
1612
param principalId string = ''
1713

1814
var resourceToken = toLower(uniqueString(subscription().id, name, location))
@@ -30,7 +26,6 @@ module resources 'resources.bicep' = {
3026
name: name
3127
location: location
3228
resourceToken: resourceToken
33-
databasePassword: databasePassword
3429
principalId: principalId
3530
}
3631
}
@@ -42,4 +37,3 @@ output WEB_APP_LOG_STREAM string = resources.outputs.WEB_APP_LOG_STREAM
4237
output WEB_APP_SSH string = resources.outputs.WEB_APP_SSH
4338
output WEB_APP_CONNECTIONSTRINGS string = resources.outputs.WEB_APP_CONNECTIONSTRINGS
4439
output WEB_APP_APPSETTINGS string = resources.outputs.WEB_APP_APPSETTINGS
45-
output AZURE_KEY_VAULT_NAME string = resources.outputs.AZURE_KEY_VAULT_NAME

0 commit comments

Comments
 (0)