github.com/aquasecurity/trivy-iac@v0.8.1-0.20240127024015-3d8e412cf0ab/avd_docs/azure/storage/AVD-AZU-0007/Terraform.md (about)

     1  
     2  Disable public access to storage containers
     3  
     4  ```hcl
     5   resource "azurerm_storage_container" "good_example" {
     6   	name                  = "terraform-container-storage"
     7   	container_access_type = "private"
     8   }
     9   
    10  ```
    11  
    12  #### Remediation Links
    13   - https://www.terraform.io/docs/providers/azure/r/storage_container.html#properties
    14