mirror of
https://github.com/opentffoundation/opentf.git
synced 2026-04-30 16:03:37 -04:00
* docs/vsphere: Fix code block * docs: Convert `...` to `# ...` to allow `terraform fmt`ing * docs: Trim trailing whitespace * docs: First-pass run of `terraform fmt` on code examples
1.2 KiB
1.2 KiB
layout, page_title, sidebar_current, description
| layout | page_title | sidebar_current | description |
|---|---|---|---|
| azure | Azure: azure_storage_container | docs-azure-storage-container | Creates a new storage container within a given storage service on Azure. |
azure_storage_container
Creates a new storage container within a given storage service on Azure.
Example Usage
resource "azure_storage_container" "stor-cont" {
name = "terraform-storage-container"
container_access_type = "blob"
storage_service_name = "tfstorserv"
}
Argument Reference
The following arguments are supported:
-
name- (Required) The name of the storage container. Must be unique within the storage service the container is located. -
storage_service_name- (Required) The name of the storage service within which the storage container should be created. -
container_access_type- (Required) The 'interface' for access the container provides. Can be eitherblob,containeror ``. -
properties- (Optional) Key-value definition of additional properties associated to the storage service.
Attributes Reference
The following attributes are exported:
id- The storage container ID. Coincides with the givenname.