23 lines
805 B
Terraform
23 lines
805 B
Terraform
|
################################################################################
|
||
|
# 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)
|
||
|
}
|