Skip to content

Commit

Permalink
adding NPS extension to avoid forcing network policy (#3270)
Browse files Browse the repository at this point in the history
* adding NPS extension to avoid forcing network policy

* formatting fix

* fixing formatting

* formatting

* formating fix
  • Loading branch information
achauhan-scc authored Jul 9, 2024
1 parent 56b4ad0 commit 6188c02
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -250,7 +250,10 @@
"outputs": [],
"source": [
"storage_account_parameters = StorageAccountCreateParameters(\n",
" sku=Sku(name=\"Standard_LRS\"), kind=\"Storage\", location=workspace_location\n",
" sku=Sku(name=\"Standard_LRS\"),\n",
" kind=\"Storage\",\n",
" location=workspace_location,\n",
" tags={\"NRMS.NSP-extension\": \"ServiceTag-storage\"},\n",
")\n",
"\n",
"storage_account = storage_client.storage_accounts.begin_create(\n",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -317,7 +317,10 @@
"outputs": [],
"source": [
"storage_account_parameters = StorageAccountCreateParameters(\n",
" sku=Sku(name=\"Standard_LRS\"), kind=\"Storage\", location=workspace_location\n",
" sku=Sku(name=\"Standard_LRS\"),\n",
" kind=\"Storage\",\n",
" location=workspace_location,\n",
" tags={\"NRMS.NSP-extension\": \"ServiceTag-storage\"},\n",
")\n",
"\n",
"storage_account = storage_client.storage_accounts.begin_create(\n",
Expand Down

0 comments on commit 6188c02

Please sign in to comment.