diff --git a/aws/sqldatabases.bicep b/aws/sqldatabases.bicep index c8a1e59..410c6b4 100644 --- a/aws/sqldatabases.bicep +++ b/aws/sqldatabases.bicep @@ -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 diff --git a/azure/sqldatabases.bicep b/azure/sqldatabases.bicep index a94bbb2..280267b 100644 --- a/azure/sqldatabases.bicep +++ b/azure/sqldatabases.bicep @@ -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