Skip to content

Instantly share code, notes, and snippets.

@mikepfeiffer
Last active January 9, 2023 17:39
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 6 You must be signed in to fork a gist
  • Save mikepfeiffer/a8f455cd983da70dcda1176d431db9d3 to your computer and use it in GitHub Desktop.
Save mikepfeiffer/a8f455cd983da70dcda1176d431db9d3 to your computer and use it in GitHub Desktop.
#!/bin/bash
az appservice plan create \
-g webapps-dev-rg \
-n gm-asp-dev-02 \
--is-linux \
--number-of-workers 1 \
--sku S1
az webapp create \
-g webapps-dev-rg \
-p gm-asp-dev-02 \
--runtime "node|6.2" \
-n gm-webapp-dev-02
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment