Last active
August 29, 2015 14:08
-
-
Save jruix/5b0073417bb9893cc1b8 to your computer and use it in GitHub Desktop.
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
# Creating a cloud platform in azure using "Azure Command-Line Tools for Mac and Linux" | |
## Adding a cloud service | |
azure service create --serviceName cloud-service-name --description "cloud-service-name description" --location "West Europe" | |
## Adding a virtual network | |
azure network vnet create virtual-network-name --location "West Europe" | |
** Tested and not working in verion 0.8.11 ** | |
## Adding a storage account | |
## Adding a virtual machine | |
### Using a json file to create a new virtual machine | |
## Adding virtual machine endpoints | |
## Adding adding endpoints ACL rules |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment