mirror of
https://github.com/kreuzwerker/terraform-provider-docker.git
synced 2026-02-11 14:53:09 -05:00
6 lines
No EOL
177 B
HCL
6 lines
No EOL
177 B
HCL
# Creates a docker volume "shared_volume".
|
|
resource "docker_volume" "shared_volume" {
|
|
name = "shared_volume"
|
|
}
|
|
|
|
# Reference the volume with ${docker_volume.shared_volume.name} |