Skip to content

Commit b982a63

Browse files
Remove sensitive outputs (#122)
* Remove sensitive outputs Revert #118 * Auto Format Co-authored-by: cloudpossebot <[email protected]>
1 parent 986d530 commit b982a63

File tree

3 files changed

+16
-5
lines changed

3 files changed

+16
-5
lines changed

Diff for: README.md

+8-1
Original file line numberDiff line numberDiff line change
@@ -140,6 +140,14 @@ Available targets:
140140

141141
No provider.
142142

143+
## Modules
144+
145+
No Modules.
146+
147+
## Resources
148+
149+
No resources.
150+
143151
## Inputs
144152

145153
| Name | Description | Type | Default | Required |
@@ -193,7 +201,6 @@ No provider.
193201
| json\_map\_encoded | JSON string encoded container definitions for use with other terraform resources such as aws\_ecs\_task\_definition |
194202
| json\_map\_encoded\_list | JSON string encoded list of container definitions for use with other terraform resources such as aws\_ecs\_task\_definition |
195203
| json\_map\_object | JSON map encoded container definition |
196-
197204
<!-- markdownlint-restore -->
198205

199206

Diff for: docs/terraform.md

+8-1
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,14 @@
1010

1111
No provider.
1212

13+
## Modules
14+
15+
No Modules.
16+
17+
## Resources
18+
19+
No resources.
20+
1321
## Inputs
1422

1523
| Name | Description | Type | Default | Required |
@@ -63,5 +71,4 @@ No provider.
6371
| json\_map\_encoded | JSON string encoded container definitions for use with other terraform resources such as aws\_ecs\_task\_definition |
6472
| json\_map\_encoded\_list | JSON string encoded list of container definitions for use with other terraform resources such as aws\_ecs\_task\_definition |
6573
| json\_map\_object | JSON map encoded container definition |
66-
6774
<!-- markdownlint-restore -->

Diff for: outputs.tf

-3
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,14 @@
11
output "json_map_encoded_list" {
22
description = "JSON string encoded list of container definitions for use with other terraform resources such as aws_ecs_task_definition"
33
value = "[${local.json_map}]"
4-
sensitive = true
54
}
65

76
output "json_map_encoded" {
87
description = "JSON string encoded container definitions for use with other terraform resources such as aws_ecs_task_definition"
98
value = local.json_map
10-
sensitive = true
119
}
1210

1311
output "json_map_object" {
1412
description = "JSON map encoded container definition"
1513
value = jsondecode(local.json_map)
16-
sensitive = true
1714
}

0 commit comments

Comments
 (0)