File tree Expand file tree Collapse file tree 1 file changed +9
-17
lines changed Expand file tree Collapse file tree 1 file changed +9
-17
lines changed Original file line number Diff line number Diff line change @@ -90,25 +90,17 @@ variable "multi_runner_config" {
90
90
log_stream_name = string
91
91
})), null )
92
92
block_device_mappings = optional (list (object ({
93
- delete_on_termination = bool
94
- device_name = string
95
- encrypted = bool
96
- iops = number
97
- kms_key_id = string
98
- snapshot_id = string
99
- throughput = number
93
+ delete_on_termination = optional ( bool , true )
94
+ device_name = optional ( string , " /dev/xvda " )
95
+ encrypted = optional ( bool , true )
96
+ iops = optional ( number )
97
+ kms_key_id = optional ( string )
98
+ snapshot_id = optional ( string )
99
+ throughput = optional ( number )
100
100
volume_size = number
101
- volume_type = string
101
+ volume_type = optional ( string , " gp3 " )
102
102
})), [{
103
- delete_on_termination = true
104
- device_name = " /dev/xvda"
105
- encrypted = true
106
- iops = null
107
- kms_key_id = null
108
- snapshot_id = null
109
- throughput = null
110
- volume_size = 30
111
- volume_type = " gp3"
103
+ volume_size = 30
112
104
}])
113
105
pool_config = optional (list (object ({
114
106
schedule_expression = string
You can’t perform that action at this time.
0 commit comments