Skip to content

Instantly share code, notes, and snippets.

@dollarpo7
Created April 6, 2022 01:12
Show Gist options
  • Save dollarpo7/70b2530d0745c8c00656dbbe00b263c6 to your computer and use it in GitHub Desktop.
Save dollarpo7/70b2530d0745c8c00656dbbe00b263c6 to your computer and use it in GitHub Desktop.
Create a Storage Account in Azure
#!/bin/bash
#Create RG for storing State Files
az group create --location westus2 --name dolazrg-terraformstate
#Create Storage Account
az storage account create --name dolazstorage2188 --resource-group dolazrg-terraformstate --location westus2 --sku Standard_LRS
#Create Storage Container
az storage container create --name dolazterraformdemo --account-name dolazstorage2188
#Enable versioning on Storage Account1
az storage account blob-service-properties update --account-name dolazstorage2188 --enable-change-feed --enable-versioning true
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment