
update readmes clean up tf provider add readme and initial templates add initial pass at readmes more readme updates update various quickstarts finish cleaning up 101s more updates lots fo template updates add remaining more updates
14 lines
583 B
HCL
14 lines
583 B
HCL
|
|
resource "azurerm_storage_account" "default" {
|
|
name = local.storage_account_name
|
|
resource_group_name = azurerm_resource_group.default.name
|
|
location = "westus2"
|
|
account_kind = "StorageV2"
|
|
account_tier = "Standard"
|
|
account_replication_type = "LRS"
|
|
enable_https_traffic_only = true
|
|
|
|
provisioner "local-exec" {
|
|
command = "az storage blob service-properties update --account-name ${azurerm_storage_account.default.name} --static-website --index-document index.html --404-document 404.html"
|
|
}
|
|
} |