Skip to content

Commit 1ce4aca

Browse files
authored
fix: Made input_paths in input_transformer optional (#116)
Per AWS provider documentation, input_paths is not required.
1 parent 87a112c commit 1ce4aca

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -227,7 +227,7 @@ resource "aws_cloudwatch_event_target" "this" {
227227
] : []
228228

229229
content {
230-
input_paths = input_transformer.value.input_paths
230+
input_paths = try(input_transformer.value.input_paths, null)
231231
input_template = chomp(input_transformer.value.input_template)
232232
}
233233
}

0 commit comments

Comments
 (0)