diff --git a/variables.tf b/variables.tf index 45d695d..e5fa487 100644 --- a/variables.tf +++ b/variables.tf @@ -247,7 +247,11 @@ variable "volumes" { variable "volumesFrom" { default = [] description = "Data volumes to mount from another container" - type = list(string) + + type = list(object({ + readOnly = bool + sourceContainer = string + })) } variable "workingDirectory" {