VBS Enclave demo

This commit is contained in:
Pieter
2023-01-18 11:32:36 +01:00
parent d65e270823
commit 8961b96dbf
2 changed files with 4 additions and 8 deletions
@@ -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: [
@@ -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