Created
April 6, 2022 01:12
-
-
Save dollarpo7/70b2530d0745c8c00656dbbe00b263c6 to your computer and use it in GitHub Desktop.
Create a Storage Account in Azure
This file contains hidden or 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
#!/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