From 8961b96dbffbff38902cfd5404cf0879a0f6ebdb Mon Sep 17 00:00:00 2001 From: Pieter Date: Wed, 18 Jan 2023 11:32:36 +0100 Subject: [PATCH] VBS Enclave demo --- .../azure-sql-database-vbs/setup/azuredeploy.bicep | 6 ++---- .../azure-sql-database-vbs/setup/setup.ps1 | 6 ++---- 2 files changed, 4 insertions(+), 8 deletions(-) diff --git a/samples/features/security/always-encrypted-with-secure-enclaves/azure-sql-database-vbs/setup/azuredeploy.bicep b/samples/features/security/always-encrypted-with-secure-enclaves/azure-sql-database-vbs/setup/azuredeploy.bicep index 6a853bef..77e53f8a 100644 --- a/samples/features/security/always-encrypted-with-secure-enclaves/azure-sql-database-vbs/setup/azuredeploy.bicep +++ b/samples/features/security/always-encrypted-with-secure-enclaves/azure-sql-database-vbs/setup/azuredeploy.bicep @@ -141,10 +141,8 @@ resource WebApp_Resource 'Microsoft.Web/sites@2022-03-01' = { resource sourceControl 'Microsoft.Web/sites/sourcecontrols@2022-03-01' = { name: '${projectName}app/web' properties: { - //repoUrl: 'https://github.com/microsoft/sql-server-samples.git' - repoUrl: 'https://github.com/Pietervanhove/sql-server-samples.git' - //branch: 'master' - branch: 'AEVBSDemo' + repoUrl: 'https://github.com/microsoft/sql-server-samples.git' + branch: 'master' isManualIntegration: true } dependsOn: [ diff --git a/samples/features/security/always-encrypted-with-secure-enclaves/azure-sql-database-vbs/setup/setup.ps1 b/samples/features/security/always-encrypted-with-secure-enclaves/azure-sql-database-vbs/setup/setup.ps1 index 1152ab36..2356c835 100644 --- a/samples/features/security/always-encrypted-with-secure-enclaves/azure-sql-database-vbs/setup/setup.ps1 +++ b/samples/features/security/always-encrypted-with-secure-enclaves/azure-sql-database-vbs/setup/setup.ps1 @@ -6,10 +6,8 @@ Import-Module "SqlServer" ###################################################################### $projectName = Read-Host -Prompt "Enter a project name that is used to generate resource names" -#$subscriptionId = Read-Host -Prompt "Enter your subscription id" -#$location = Read-Host -Prompt "Enter a region where you want to deploy the demo environment" -$location = "NorthEurope" -$subscriptionId = "b7b62657-3a23-4ee4-86e6-8cd893cb7331" +$subscriptionId = Read-Host -Prompt "Enter your subscription id" +$location = Read-Host -Prompt "Enter a region where you want to deploy the demo environment" $sqlAdminUserName = Read-Host -Prompt "Enter the username of the Azure SQL database server administrator for SQL authentication" $sqlAdminPasswordSecureString = Read-Host -Prompt "Enter the password of the Azure SQL database server administrator for SQL authentication" -AsSecureString