Skip to content

Commit b3364c1

Browse files
Make vars sensitive (#36)
* Make vars sensitive cloudposse/terraform-aws-ecs-web-app#113 <-- That PR broke this module. * Auto Format * empty commit to trigger actions Co-authored-by: cloudpossebot <[email protected]>
1 parent 0a3e609 commit b3364c1

File tree

3 files changed

+44
-2
lines changed

3 files changed

+44
-2
lines changed

README.md

Lines changed: 21 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -436,6 +436,27 @@ Available targets:
436436
| aws | >= 2.0 |
437437
| random | >= 2.0 |
438438

439+
## Modules
440+
441+
| Name | Source | Version |
442+
|------|--------|---------|
443+
| ecs_web_app | cloudposse/ecs-web-app/aws | 0.54.0 |
444+
| github_webhooks | cloudposse/repository-webhooks/github | 0.12.0 |
445+
| ssh_key_pair | cloudposse/ssm-tls-ssh-key-pair/aws | 0.10.0 |
446+
| this | cloudposse/label/null | 0.24.1 |
447+
448+
## Resources
449+
450+
| Name |
451+
|------|
452+
| [aws_iam_role_policy_attachment](https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/iam_role_policy_attachment) |
453+
| [aws_kms_key](https://registry.terraform.io/providers/hashicorp/aws/latest/docs/data-sources/kms_key) |
454+
| [aws_route53_record](https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/route53_record) |
455+
| [aws_security_group_rule](https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/security_group_rule) |
456+
| [aws_ssm_parameter](https://registry.terraform.io/providers/hashicorp/aws/latest/docs/data-sources/ssm_parameter) |
457+
| [aws_ssm_parameter](https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/ssm_parameter) |
458+
| [random_string](https://registry.terraform.io/providers/hashicorp/random/latest/docs/resources/string) |
459+
439460
## Inputs
440461

441462
| Name | Description | Type | Default | Required |
@@ -604,7 +625,6 @@ Available targets:
604625
| httpcode\_target\_5xx\_count\_cloudwatch\_metric\_alarm\_id | ALB Target Group 5xx count CloudWatch metric alarm ID |
605626
| target\_response\_time\_average\_cloudwatch\_metric\_alarm\_arn | ALB Target Group response time average CloudWatch metric alarm ARN |
606627
| target\_response\_time\_average\_cloudwatch\_metric\_alarm\_id | ALB Target Group response time average CloudWatch metric alarm ID |
607-
608628
<!-- markdownlint-restore -->
609629

610630

docs/terraform.md

Lines changed: 21 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,27 @@
1414
| aws | >= 2.0 |
1515
| random | >= 2.0 |
1616

17+
## Modules
18+
19+
| Name | Source | Version |
20+
|------|--------|---------|
21+
| ecs_web_app | cloudposse/ecs-web-app/aws | 0.54.0 |
22+
| github_webhooks | cloudposse/repository-webhooks/github | 0.12.0 |
23+
| ssh_key_pair | cloudposse/ssm-tls-ssh-key-pair/aws | 0.10.0 |
24+
| this | cloudposse/label/null | 0.24.1 |
25+
26+
## Resources
27+
28+
| Name |
29+
|------|
30+
| [aws_iam_role_policy_attachment](https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/iam_role_policy_attachment) |
31+
| [aws_kms_key](https://registry.terraform.io/providers/hashicorp/aws/latest/docs/data-sources/kms_key) |
32+
| [aws_route53_record](https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/route53_record) |
33+
| [aws_security_group_rule](https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/security_group_rule) |
34+
| [aws_ssm_parameter](https://registry.terraform.io/providers/hashicorp/aws/latest/docs/data-sources/ssm_parameter) |
35+
| [aws_ssm_parameter](https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/ssm_parameter) |
36+
| [random_string](https://registry.terraform.io/providers/hashicorp/random/latest/docs/resources/string) |
37+
1738
## Inputs
1839

1940
| Name | Description | Type | Default | Required |
@@ -182,5 +203,4 @@
182203
| httpcode\_target\_5xx\_count\_cloudwatch\_metric\_alarm\_id | ALB Target Group 5xx count CloudWatch metric alarm ID |
183204
| target\_response\_time\_average\_cloudwatch\_metric\_alarm\_arn | ALB Target Group response time average CloudWatch metric alarm ARN |
184205
| target\_response\_time\_average\_cloudwatch\_metric\_alarm\_id | ALB Target Group response time average CloudWatch metric alarm ID |
185-
186206
<!-- markdownlint-restore -->

outputs.tf

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,11 +46,13 @@ output "alb_ingress_target_group_arn_suffix" {
4646
output "container_definition_json" {
4747
description = "JSON encoded list of container definitions for use with other terraform resources such as aws_ecs_task_definition"
4848
value = module.ecs_web_app.container_definition_json
49+
sensitive = true
4950
}
5051

5152
output "container_definition_json_map" {
5253
description = "JSON encoded container definitions for use with other terraform resources such as aws_ecs_task_definition"
5354
value = module.ecs_web_app.container_definition_json_map
55+
sensitive = true
5456
}
5557

5658
output "ecs_exec_role_policy_id" {

0 commit comments

Comments
 (0)