Skip to content

Commit

Permalink
DVO-4278 mount_points input type changed to list of maps
Browse files Browse the repository at this point in the history
DVO-4278 fix identation


DVO-4278 default value an empty list for mount points
  • Loading branch information
rafaebury authored and LuisPiedra committed Jan 27, 2020
1 parent 2eb31a4 commit e7fee69
Showing 1 changed file with 5 additions and 8 deletions.
13 changes: 5 additions & 8 deletions variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -102,15 +102,12 @@ variable "log_options" {
}

variable "mount_points" {
type = list(string)
description = "Container mount points. This is a list of maps, where each map should contain a `containerPath` and `sourceVolume`"
default = []
#default = [
# {
# containerPath = "/tmp"
# sourceVolume = "test-volume"
# }
#]
type = list(object({
containerPath = string
sourceVolume = string
}))
default = []
}

variable "dns_servers" {
Expand Down

0 comments on commit e7fee69

Please sign in to comment.