Log Destination
The sym_log_destination
resource allows you to specify where audit logs should be streamed.
There are several Log Destinations available, including Segment, AWS Kinesis Kinesis Data Streams, and AWS Kinesis Firehose.
resource "sym_log_destination" "this" {
type = "aws_kinesis"
integration_id = sym_integration.kinesis_context.id
settings = {
stream_arn = "arn:aws:kinesis:us-east-2:123456789012:stream/mystream"
}
}
Name | Description | Required |
---|---|---|
| The type of the log destination. | ✔️ |
| The ID of a | ✔️ |
| The ARN of a Kinesis stream. |
Updated 4 months ago
Did this page help you?