diff --git a/main.tf b/main.tf new file mode 100644 index 0000000000..e5eb723d51 --- /dev/null +++ b/main.tf @@ -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 +}