Check if ID is enough to apply temp volume

This commit is contained in:
2025-12-18 00:32:06 +00:00
parent ca2f21535b
commit 06e6ed0f0a
2 changed files with 6 additions and 1 deletions
@@ -1,3 +1,8 @@
output "id" {
description = "ID of the temporary volume"
value = docker_volume.shared_volume.id
}
output "name" {
description = "Name of the temporary volume"
value = docker_volume.shared_volume.name
@@ -32,7 +32,7 @@ locals {
penpot_volumes = [
{
host_path = "${module.penpot_temp_volume.name}"
host_path = "${module.penpot_temp_volume.id}"
container_path = "/opt/data/assets"
read_only = false
}