Skip to content

Commit ecc0847

Browse files
committed
* fix after pre-commit
1 parent 08fc230 commit ecc0847

File tree

3 files changed

+4
-1
lines changed

3 files changed

+4
-1
lines changed

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -341,6 +341,7 @@ module "eventbridge" {
341341
create_archives = false # to control creation of EventBridge Archives
342342
create_permissions = false # to control creation of EventBridge Permissions
343343
create_role = false # to control creation of the IAM role and policies required for EventBridge
344+
create_pipe_role_only = false # to control creation of the IAM role and policies required for EventBridge Pipes only
344345
create_connections = false # to control creation of EventBridge Connection resources
345346
create_api_destinations = false # to control creation of EventBridge Destination resources
346347
create_schedule_groups = false # to control creation of EventBridge Schedule Group resources
@@ -496,6 +497,7 @@ No modules.
496497
| <a name="input_create_bus"></a> [create\_bus](#input\_create\_bus) | Controls whether EventBridge Bus resource should be created | `bool` | `true` | no |
497498
| <a name="input_create_connections"></a> [create\_connections](#input\_create\_connections) | Controls whether EventBridge Connection resources should be created | `bool` | `false` | no |
498499
| <a name="input_create_permissions"></a> [create\_permissions](#input\_create\_permissions) | Controls whether EventBridge Permission resources should be created | `bool` | `true` | no |
500+
| <a name="input_create_pipe_role_only"></a> [create\_pipe\_role\_only](#input\_create\_pipe\_role\_only) | Controls whether an IAM role should be created for the pipes only | `bool` | `false` | no |
499501
| <a name="input_create_pipes"></a> [create\_pipes](#input\_create\_pipes) | Controls whether EventBridge Pipes resources should be created | `bool` | `true` | no |
500502
| <a name="input_create_role"></a> [create\_role](#input\_create\_role) | Controls whether IAM roles should be created | `bool` | `true` | no |
501503
| <a name="input_create_rules"></a> [create\_rules](#input\_create\_rules) | Controls whether EventBridge Rule resources should be created | `bool` | `true` | no |

examples/with-pipes/README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,7 @@ Note that this example may create resources which cost money. Run `terraform des
5959
| [aws_iam_role_policy_attachment.pipe](https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/iam_role_policy_attachment) | resource |
6060
| [aws_kinesis_firehose_delivery_stream.logs](https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/kinesis_firehose_delivery_stream) | resource |
6161
| [aws_kinesis_stream.source](https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/kinesis_stream) | resource |
62+
| [aws_kinesis_stream.target](https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/kinesis_stream) | resource |
6263
| [aws_sqs_queue.dlq](https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/sqs_queue) | resource |
6364
| [aws_sqs_queue.source](https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/sqs_queue) | resource |
6465
| [aws_sqs_queue.target](https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/sqs_queue) | resource |

main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -694,7 +694,7 @@ resource "aws_pipes_pipe" "this" {
694694

695695
content {
696696
client_certificate_tls_auth = credentials.value.client_certificate_tls_auth
697-
sasl_scram_512_auth = credentials.value.sasl_scram_512_auth
697+
sasl_scram_512_auth = credentials.value.sasl_scram_512_auth
698698
}
699699
}
700700
}

0 commit comments

Comments
 (0)