Skip to content

Commit

Permalink
SQL recipe updates (#35)
Browse files Browse the repository at this point in the history
  • Loading branch information
willdavsmith committed Oct 13, 2023
1 parent 927659f commit 9d6a71e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions aws/sqldatabases.bicep
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,11 @@ param context object
param eksClusterName string

@description('SQL administrator username')
param adminLogin string
param adminLogin string = 'sqladmin'

@description('SQL administrator password')
@secure()
param adminPassword string
param adminPassword string = newGuid()

@description('Name of the SQL database. Defaults to the name of the Radius SQL resource.')
param database string = context.resource.name
Expand Down
4 changes: 2 additions & 2 deletions azure/sqldatabases.bicep
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,11 @@ param context object
param location string = resourceGroup().location

@description('SQL administrator username')
param adminLogin string
param adminLogin string = 'sqladmin'

@description('SQL administrator password')
@secure()
param adminPassword string
param adminPassword string = newGuid()

@description('Name of the SQL database. Defaults to the name of the Radius SQL resource.')
param database string = context.resource.name
Expand Down

0 comments on commit 9d6a71e

Please sign in to comment.