Skip to content

Commit

Permalink
Create main.tf
Browse files Browse the repository at this point in the history
  • Loading branch information
tsmithv11 authored Jan 30, 2025
1 parent 61a31fe commit 31c7275
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions main.tf
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
resource "azurerm_storage_account" "example" {
name = "foo"
resource_group_name = azurerm_resource_group.example.name
location = azurerm_resource_group.example.location
account_tier = "Standard"
account_replication_type = "GRS"
queue_properties {
logging {
delete = false
read = false
write = true
version = "1.0"
retention_policy_days = 10
}
hour_metrics {
enabled = true
include_apis = true
version = "1.0"
retention_policy_days = 10
}
minute_metrics {
enabled = true
include_apis = true
version = "1.0"
retention_policy_days = 10
}
}

allow_nested_items_to_be_public = true
}

0 comments on commit 31c7275

Please sign in to comment.