Skip to content

Instantly share code, notes, and snippets.

@ItayPodhajcer
Created May 29, 2023 13:55
Show Gist options
  • Save ItayPodhajcer/74a3a7b537b84e3cc46c7df943f1d3f9 to your computer and use it in GitHub Desktop.
Save ItayPodhajcer/74a3a7b537b84e3cc46c7df943f1d3f9 to your computer and use it in GitHub Desktop.
terraform-did-web-azure/main.tf#storage
resource "random_string" "this" {
length = 24
special = false
upper = false
}
resource "azurerm_storage_account" "this" {
name = random_string.this.result
resource_group_name = azurerm_resource_group.this.name
location = var.location
account_tier = "Standard"
account_replication_type = "LRS"
account_kind = "StorageV2"
static_website {}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment