https://github.com/caseywatson/simplearmdemo
Super simple ARM template demo leveraging Visual Studio Code.
https://github.com/caseywatson/simplearmdemo
Last synced: about 1 month ago
JSON representation
Super simple ARM template demo leveraging Visual Studio Code.
- Host: GitHub
- URL: https://github.com/caseywatson/simplearmdemo
- Owner: caseywatson
- Created: 2019-02-11T16:26:33.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2019-02-12T11:42:46.000Z (over 7 years ago)
- Last Synced: 2025-01-14T17:59:09.793Z (over 1 year ago)
- Language: PowerShell
- Homepage:
- Size: 17.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Basic ARM Template Demo
### Prerequisites
* An Azure subscription
* Visual Studio Code (http://code.visualstudio.com)
* The Visual Studio Code Azure Resource Manager extension
* Tip - In Visual Studio Code, press [Ctrl+Shift+X] to access the extension manager.
### Demo steps
1. In Visual Studio Code, navigate to [File] then [Open File...].
2. Open file ```https://github.com/caseywatson/BucDemo1/edit/master/BucDemo1/azuredeploy.json```.
3. Review the file and make any necessary changes.
4. Navigate to the Azure portal (https://portal.azure.com).
5. Open the Cloud Shell by clicking the >_ icon at the top of your screen.
6. Select the Bash interface.
7. Drag and drop the ```azuredeploy.json``` file into the Cloud Shell area. Wait for it to upload.
8. Create a new resource group through the Cloud Shell:
- ```az group create --name [your resource group name] --location [group location (e.g., francecentral)]```
9. Deploy the uploaded template to your newly created resource group through the Cloud Shell:
- ```az group deployment create --name deploy1 --resource-group [name of resource group created in previous step] --template-file "azuredeploy.json"```