File tree Expand file tree Collapse file tree 3 files changed +15
-3
lines changed Expand file tree Collapse file tree 3 files changed +15
-3
lines changed Original file line number Diff line number Diff line change @@ -239,13 +239,13 @@ module "eventbridge" {
239
239
| Name | Version |
240
240
| ------| ---------|
241
241
| <a name =" requirement_terraform " ></a > [ terraform] ( #requirement\_ terraform ) | >= 0.13.1 |
242
- | <a name =" requirement_aws " ></a > [ aws] ( #requirement\_ aws ) | >= 3.19 |
242
+ | <a name =" requirement_aws " ></a > [ aws] ( #requirement\_ aws ) | >= 3.40 |
243
243
244
244
## Providers
245
245
246
246
| Name | Version |
247
247
| ------| ---------|
248
- | <a name =" provider_aws " ></a > [ aws] ( #provider\_ aws ) | >= 3.19 |
248
+ | <a name =" provider_aws " ></a > [ aws] ( #provider\_ aws ) | >= 3.40 |
249
249
250
250
## Modules
251
251
Original file line number Diff line number Diff line change @@ -122,6 +122,18 @@ resource "aws_cloudwatch_event_target" "this" {
122
122
}
123
123
}
124
124
125
+ dynamic "http_target" {
126
+ for_each = lookup (each. value , " http_target" , null ) != null ? [
127
+ each . value . http_target
128
+ ] : []
129
+
130
+ content {
131
+ path_parameter_values = lookup (http_target. value , " path_parameter_values" , null )
132
+ query_string_parameters = lookup (http_target. value , " query_string_parameters" , null )
133
+ header_parameters = lookup (http_target. value , " header_parameters" , null )
134
+ }
135
+ }
136
+
125
137
dynamic "input_transformer" {
126
138
for_each = lookup (each. value , " input_transformer" , null ) != null ? [
127
139
each . value . input_transformer
Original file line number Diff line number Diff line change @@ -2,6 +2,6 @@ terraform {
2
2
required_version = " >= 0.13.1"
3
3
4
4
required_providers {
5
- aws = " >= 3.19 "
5
+ aws = " >= 3.40 "
6
6
}
7
7
}
You can’t perform that action at this time.
0 commit comments