Skip to content

Commit 07d4fab

Browse files
Replace string literal for sample folder
1 parent 7a0797f commit 07d4fab

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

samples/authX-pro/create.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@
131131
" raise SystemExit(1)\n",
132132
"\n",
133133
"# 3) Run the deployment using the utility function that handles working directory management\n",
134-
"output = utils.create_bicep_deployment_group_for_sample('authX-pro', rg_name, rg_location, bicep_parameters)\n",
134+
"output = utils.create_bicep_deployment_group_for_sample(sample_folder, rg_name, rg_location, bicep_parameters)\n",
135135
"\n",
136136
"# 4) Print a deployment summary, if successful; otherwise, exit with an error\n",
137137
"if not output.success:\n",

samples/authX/create.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@
105105
" raise SystemExit(1)\n",
106106
"\n",
107107
"# 3) Run the deployment using the utility function that handles working directory management\n",
108-
"output = utils.create_bicep_deployment_group_for_sample('authX', rg_name, rg_location, bicep_parameters)\n",
108+
"output = utils.create_bicep_deployment_group_for_sample(sample_folder, rg_name, rg_location, bicep_parameters)\n",
109109
"\n",
110110
"# 4) Print a deployment summary, if successful; otherwise, exit with an error\n",
111111
"if not output.success:\n",

samples/general/create.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@
8080
" raise SystemExit(1)\n",
8181
"\n",
8282
"# 3) Execute the deployment using the utility function that handles working directory management\n",
83-
"output = utils.create_bicep_deployment_group_for_sample('general', rg_name, rg_location, bicep_parameters)\n",
83+
"output = utils.create_bicep_deployment_group_for_sample(sample_folder, rg_name, rg_location, bicep_parameters)\n",
8484
"\n",
8585
"# 4) Print a deployment summary, if successful; otherwise, exit with an error\n",
8686
"if not output.success:\n",

samples/load-balancing/create.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@
8686
" raise SystemExit(1)\n",
8787
"\n",
8888
"# 3) Run the deployment using the utility function that handles working directory management\n",
89-
"output = utils.create_bicep_deployment_group_for_sample('load-balancing', rg_name, rg_location, bicep_parameters)\n",
89+
"output = utils.create_bicep_deployment_group_for_sample(sample_folder, rg_name, rg_location, bicep_parameters)\n",
9090
"\n",
9191
"# 4) Print a deployment summary, if successful; otherwise, exit with an error\n",
9292
"if not output.success:\n",

samples/secure-blob-access/create.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@
130130
" raise SystemExit(1)\n",
131131
"\n",
132132
"# 3) Run the deployment using the utility function that handles working directory management\n",
133-
"output = utils.create_bicep_deployment_group_for_sample('secure-blob-access', rg_name, rg_location, bicep_parameters)\n",
133+
"output = utils.create_bicep_deployment_group_for_sample(sample_folder, rg_name, rg_location, bicep_parameters)\n",
134134
"\n",
135135
"# 4) Print a deployment summary, if successful; otherwise, exit with an error\n",
136136
"if not output.success:\n",

0 commit comments

Comments
 (0)