Skip to content

Commit 8961b96

Browse files
committed
VBS Enclave demo
1 parent d65e270 commit 8961b96

2 files changed

Lines changed: 4 additions & 8 deletions

File tree

samples/features/security/always-encrypted-with-secure-enclaves/azure-sql-database-vbs/setup/azuredeploy.bicep

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -141,10 +141,8 @@ resource WebApp_Resource 'Microsoft.Web/sites@2022-03-01' = {
141141
resource sourceControl 'Microsoft.Web/sites/sourcecontrols@2022-03-01' = {
142142
name: '${projectName}app/web'
143143
properties: {
144-
//repoUrl: 'https://github.com/microsoft/sql-server-samples.git'
145-
repoUrl: 'https://github.com/Pietervanhove/sql-server-samples.git'
146-
//branch: 'master'
147-
branch: 'AEVBSDemo'
144+
repoUrl: 'https://github.com/microsoft/sql-server-samples.git'
145+
branch: 'master'
148146
isManualIntegration: true
149147
}
150148
dependsOn: [

samples/features/security/always-encrypted-with-secure-enclaves/azure-sql-database-vbs/setup/setup.ps1

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,8 @@ Import-Module "SqlServer"
66
######################################################################
77

88
$projectName = Read-Host -Prompt "Enter a project name that is used to generate resource names"
9-
#$subscriptionId = Read-Host -Prompt "Enter your subscription id"
10-
#$location = Read-Host -Prompt "Enter a region where you want to deploy the demo environment"
11-
$location = "NorthEurope"
12-
$subscriptionId = "b7b62657-3a23-4ee4-86e6-8cd893cb7331"
9+
$subscriptionId = Read-Host -Prompt "Enter your subscription id"
10+
$location = Read-Host -Prompt "Enter a region where you want to deploy the demo environment"
1311
$sqlAdminUserName = Read-Host -Prompt "Enter the username of the Azure SQL database server administrator for SQL authentication"
1412
$sqlAdminPasswordSecureString = Read-Host -Prompt "Enter the password of the Azure SQL database server administrator for SQL authentication" -AsSecureString
1513

0 commit comments

Comments
 (0)