Skip to content

Instantly share code, notes, and snippets.

@viktors-telle
Last active March 5, 2020 05:34
Show Gist options
  • Save viktors-telle/8ad912e37280e1cb1fe9f0506ea7d89e to your computer and use it in GitHub Desktop.
Save viktors-telle/8ad912e37280e1cb1fe9f0506ea7d89e to your computer and use it in GitHub Desktop.
Terraform template to create Azure Storage Account.
resource "azurerm_storage_account" "example" {
name = "storageaccountname"
resource_group_name = "resource_group_name"
location = "resource_group_location"
account_tier = "Standard"
account_replication_type = "GRS"
tags = {
environment = "dev"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment