Skip to content

Instantly share code, notes, and snippets.

@afzaal-ahmad-zeeshan
Last active May 10, 2020 13:48
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save afzaal-ahmad-zeeshan/1331709ccf38e89e94a846f281ba6274 to your computer and use it in GitHub Desktop.
Save afzaal-ahmad-zeeshan/1331709ccf38e89e94a846f281ba6274 to your computer and use it in GitHub Desktop.
provider "azurerm" {
version = "=1.44.0"
subscription_id = "<subscription-id>"
tenant_id = "<tenant-id>"
}
resource "azurerm_resource_group" "staticwebsite_RG" {
name = "staticwebsite-RG"
location = "West Europe"
}
resource "azurerm_storage_account" "site_storage_account" {
resource_group_name = azurerm_resource_group.staticwebsite_RG.name
location = azurerm_resource_group.staticwebsite_RG.location
name = "<uniqueaccountname>"
account_replication_type = "RAGRS"
account_tier = "Standard"
account_kind = "StorageV2"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment