https://github.com/cloudacademy/azure-overview
https://github.com/cloudacademy/azure-overview
Last synced: over 1 year ago
JSON representation
- Host: GitHub
- URL: https://github.com/cloudacademy/azure-overview
- Owner: cloudacademy
- Created: 2020-03-19T16:21:23.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2023-03-24T21:36:06.000Z (over 3 years ago)
- Last Synced: 2025-01-13T06:08:18.283Z (over 1 year ago)
- Size: 2.93 KB
- Stars: 126
- Watchers: 16
- Forks: 101
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Overview of Azure Services
This file contains text you can copy and paste for the examples in Cloud Academy's _Overview of Azure Services_ course.
### Introduction
[Azure Free Trial](https://azure.microsoft.com/free)
### Using the Azure Portal
[Azure Portal](https://portal.azure.com)
### Using the Azure CLI
```
git clone https://github.com/Azure-Samples/html-docs-hello-world.git
cd html-docs-hello-world
az webapp up --location westus --name [your_name] --html
http://[your_name].azurewebsites.net
az group delete --name [resource_group_name]
```
**Note:** If you're using Cloud Academy's Azure CLI Playground lab, then you'll need to use the following two commands instead of the "az webapp up..." command above. The first command tells you what values to use for [resource_group] and [location] in the second command.
```
az group list --query "[].{resource_group:name, location:location}"
az webapp up -g [resource_group] --location [location] -n [app_name] --sku S1 --html
```
### Service Categories
[Azure Products](https://azure.microsoft.com/services/)
### Designing a Solution
[Azure Architecture Center](https://docs.microsoft.com/azure/architecture/)
### Summary
[Azure documentation](https://docs.microsoft.com/azure/)
support@cloudacademy.com