Skip to content

Commit

Permalink
fix: Made input_paths in input_transformer optional (#116)
Browse files Browse the repository at this point in the history
Per AWS provider documentation, input_paths is not required.
  • Loading branch information
rutgoff committed Apr 5, 2024
1 parent 87a112c commit 1ce4aca
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -227,7 +227,7 @@ resource "aws_cloudwatch_event_target" "this" {
] : []

content {
input_paths = input_transformer.value.input_paths
input_paths = try(input_transformer.value.input_paths, null)
input_template = chomp(input_transformer.value.input_template)
}
}
Expand Down

0 comments on commit 1ce4aca

Please sign in to comment.