From 514086617f6173c7afd12d362606427c6ecedbf3 Mon Sep 17 00:00:00 2001 From: Will Smith Date: Fri, 13 Oct 2023 22:42:10 +0100 Subject: [PATCH] SQL recipe updates (#35) (cherry picked from commit 9d6a71e301ae674a9bc2ffbda93ad194a2d71909) --- aws/sqldatabases.bicep | 4 ++-- azure/sqldatabases.bicep | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) 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