outputs.tf 363 B

123456789
  1. output "cloudwatch_to_firehose_trust_arn" {
  2. description = "cloudwatch log subscription filter role_arn"
  3. value = aws_iam_role.cloudwatch_to_firehose_trust.arn
  4. }
  5. output "destination_firehose_arn" {
  6. description = "cloudwatch log subscription filter - Firehose destination arn"
  7. value = aws_kinesis_firehose_delivery_stream.kinesis_firehose.arn
  8. }