st

Storage Account

StorageAzure
General

General information about the service.

Description

Durable, highly available, and massively scalable cloud storage.

Namespace and Entity

Microsoft.Storage/storageAccounts

Chat

Powered by AI

Talk to this service to learn more about it.

Suggested questions:

Naming

The conventions, rules, and restrictions for naming this service.

Naming Convention

st

Length

3-24

Valid Characters

Alphanumerics, hyphens, underscores.

Scope

resource group

Code

Deploy your infrastructure as code using your preferred tooling.

Official DocumentationTerraform
terraform
1resource "azurerm_storage_account" "main" {
2 name = "st${var.project}${var.environment}"
3 resource_group_name = azurerm_resource_group.main.name
4 location = azurerm_resource_group.main.location
5 account_tier = "Standard"
6 account_replication_type = "GRS"
7 account_kind = "StorageV2"
8 min_tls_version = "TLS1_2"
9
10 blob_properties {
11 versioning_enabled = true
12 delete_retention_policy {
13 days = 7
14 }
15 container_delete_retention_policy {
16 days = 7
17 }
18 }
19
20 network_rules {
21 default_action = "Deny"
22 bypass = ["AzureServices"]
23 ip_rules = var.allowed_ips
24 }
25
26 tags = var.tags
27}
Utilities

Utilities to support app deployment or configuration.

Private Endpoints

Details to successfully deploy private endpoints on Azure.

Sub-Resource Names

blobblob_secondarytablequeuefilewebdfs

Private DNS Zone Names

privatelink.blob.core.windows.netprivatelink.table.core.windows.netprivatelink.queue.core.windows.netprivatelink.file.core.windows.net

Public DNS Zone Forwarders

blob.core.windows.nettable.core.windows.netqueue.core.windows.netfile.core.windows.net