File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -226,7 +226,7 @@ resource "aws_batch_job_queue" "this" {
226226 scheduling_policy_arn = try (each. value . scheduling_policy_arn , aws_batch_scheduling_policy. this [each . key ]. arn )
227227 compute_environments = [for env in aws_batch_compute_environment . this : env . arn ]
228228
229- tags = merge (var. tags , lookup (each. value , " tags" ))
229+ tags = merge (var. tags , lookup (each. value , " tags" , {} ))
230230}
231231
232232# ###############################################################################
@@ -251,7 +251,7 @@ resource "aws_batch_scheduling_policy" "this" {
251251 }
252252 }
253253
254- tags = merge (var. tags , lookup (each. value , " tags" ))
254+ tags = merge (var. tags , lookup (each. value , " tags" , {} ))
255255}
256256
257257# ###############################################################################
You can’t perform that action at this time.
0 commit comments