output.tf 302 B

123456789
  1. output "cloudwatch_loggroup_arn" {
  2. description = "The arn of the CloudWatch log group"
  3. value = aws_cloudwatch_log_group.cwl_loggroup.arn
  4. }
  5. output "cloudwatch_loggroup_name" {
  6. description = "The name of the CloudWatch log group"
  7. value = aws_cloudwatch_log_group.cwl_loggroup.name
  8. }