terraform-tofu-labs/2-simple-example/iac/modules/container-definition/outputs.tf

23 lines
805 B
Terraform
Raw Normal View History

2024-04-15 15:31:58 +00:00
################################################################################
# Container Definition
################################################################################
output "container_definition" {
description = "Container definition"
value = local.container_definition
}
################################################################################
# CloudWatch Log Group
################################################################################
output "cloudwatch_log_group_name" {
description = "Name of CloudWatch log group created"
value = try(aws_cloudwatch_log_group.this[0].name, null)
}
output "cloudwatch_log_group_arn" {
description = "ARN of CloudWatch log group created"
value = try(aws_cloudwatch_log_group.this[0].arn, null)
}