Skip to content

Commit

Permalink
fix: make required outputs sensitive (cloudposse#113)
Browse files Browse the repository at this point in the history
  • Loading branch information
syphernl authored Feb 9, 2021
1 parent 889e9da commit e9df99f
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions outputs.tf
Original file line number Diff line number Diff line change
Expand Up @@ -51,16 +51,19 @@ output "alb_ingress_target_group_arn_suffix" {
output "container_definition" {
description = "All outputs from `module.container_definition`"
value = module.container_definition
sensitive = true
}

output "container_definition_json" {
description = "JSON encoded list of container definitions for use with other terraform resources such as aws_ecs_task_definition"
value = module.container_definition.json_map_encoded_list
sensitive = true
}

output "container_definition_json_map" {
description = "JSON encoded container definitions for use with other terraform resources such as aws_ecs_task_definition"
value = module.container_definition.json_map_encoded
sensitive = true
}

output "ecs_alb_service_task" {
Expand Down Expand Up @@ -146,6 +149,7 @@ output "cloudwatch_log_group_name" {
output "codebuild" {
description = "All outputs from `module.ecs_codepipeline`"
value = module.ecs_codepipeline
sensitive = true
}

output "codebuild_project_name" {
Expand Down

0 comments on commit e9df99f

Please sign in to comment.