-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
convert template to bicep + all previous improvements
- Loading branch information
Showing
27 changed files
with
2,410 additions
and
524 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
{ | ||
"recommendations": [ | ||
"ms-azuretools.vscode-bicep" | ||
] | ||
} |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
{ | ||
// See https://go.microsoft.com/fwlink/?LinkId=733558 | ||
// for the documentation about the tasks.json format | ||
"version": "2.0.0", | ||
"tasks": [ | ||
{ | ||
"label": "generate azuredeploy.json", | ||
"type": "shell", | ||
"command": "az", | ||
"args": [ | ||
"bicep", | ||
"build", | ||
"--file", | ||
"main.bicep", | ||
"--outfile", | ||
"azuredeploy.json" | ||
], | ||
"group": "build", | ||
"presentation": { | ||
"reveal": "silent" | ||
} | ||
} | ||
] | ||
} |
Oops, something went wrong.