We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a08f70f commit 9406fcbCopy full SHA for 9406fcb
examples/with-pipes/main.tf
@@ -134,6 +134,10 @@ module "eventbridge" {
134
}
135
136
137
+ target_parameters = {
138
+ input_template = "{\"data\":<$.dynamodb>}"
139
+ }
140
+
141
tags = {
142
Pipe = "dynamodb_stream_source_sqs_target"
143
main.tf
@@ -698,6 +698,7 @@ resource "aws_pipes_pipe" "this" {
698
for_each = try([each.value.target_parameters], [])
699
700
content {
701
+ input_template = try(target_parameters.value.input_template, null)
702
dynamic "sqs_queue_parameters" {
703
for_each = try([target_parameters.value.sqs_queue_parameters], [])
704
0 commit comments