File tree Expand file tree Collapse file tree 5 files changed +5
-2
lines changed
modules/container-definition Expand file tree Collapse file tree 5 files changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -43,6 +43,7 @@ Note that this example may create resources which will incur monetary charges on
43
43
| <a name =" module_ecs " ></a > [ ecs] ( #module\_ ecs ) | ../../ | n/a |
44
44
| <a name =" module_ecs_cluster_disabled " ></a > [ ecs\_ cluster\_ disabled] ( #module\_ ecs\_ cluster\_ disabled ) | ../../modules/cluster | n/a |
45
45
| <a name =" module_ecs_disabled " ></a > [ ecs\_ disabled] ( #module\_ ecs\_ disabled ) | ../../ | n/a |
46
+ | <a name =" module_secrets_manager " ></a > [ secrets\_ manager] ( #module\_ secrets\_ manager ) | terraform-aws-modules/secrets-manager/aws | ~ > 1.3 |
46
47
| <a name =" module_service_disabled " ></a > [ service\_ disabled] ( #module\_ service\_ disabled ) | ../../modules/service | n/a |
47
48
| <a name =" module_vpc " ></a > [ vpc] ( #module\_ vpc ) | terraform-aws-modules/vpc/aws | ~ > 5.0 |
48
49
Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ module "secrets_manager" {
27
27
FOO = " secret2"
28
28
}
29
29
30
- source = " terraform-aws-modules/secrets-manager/aws"
30
+ source = " terraform-aws-modules/secrets-manager/aws"
31
31
version = " ~> 1.3"
32
32
33
33
name_prefix = each. key
Original file line number Diff line number Diff line change @@ -196,6 +196,7 @@ No modules.
196
196
| <a name =" output_cloudwatch_log_group_arn " ></a > [ cloudwatch\_ log\_ group\_ arn] ( #output\_ cloudwatch\_ log\_ group\_ arn ) | ARN of CloudWatch log group created |
197
197
| <a name =" output_cloudwatch_log_group_name " ></a > [ cloudwatch\_ log\_ group\_ name] ( #output\_ cloudwatch\_ log\_ group\_ name ) | Name of CloudWatch log group created |
198
198
| <a name =" output_container_definition " ></a > [ container\_ definition] ( #output\_ container\_ definition ) | Container definition |
199
+ | <a name =" output_secrets_arns " ></a > [ secrets\_ arns] ( #output\_ secrets\_ arns ) | The secrets ARNs for all containers defined |
199
200
<!-- END_TF_DOCS -->
200
201
201
202
## License
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ output "container_definition" {
9
9
10
10
output "secrets_arns" {
11
11
description = " The secrets ARNs for all containers defined"
12
- value = [for v in try (local. container_definition . secrets , []): v . valueFrom ]
12
+ value = [for v in try (local. container_definition . secrets , []) : v . valueFrom ]
13
13
}
14
14
15
15
# ###############################################################################
Original file line number Diff line number Diff line change @@ -50,6 +50,7 @@ module "wrapper" {
50
50
enable_ecs_managed_tags = try (each. value . enable_ecs_managed_tags , var. defaults . enable_ecs_managed_tags , true )
51
51
enable_execute_command = try (each. value . enable_execute_command , var. defaults . enable_execute_command , false )
52
52
ephemeral_storage = try (each. value . ephemeral_storage , var. defaults . ephemeral_storage , {})
53
+ explicit_task_exec_secret_arns = try (each. value . explicit_task_exec_secret_arns , var. defaults . explicit_task_exec_secret_arns , false )
53
54
external_id = try (each. value . external_id , var. defaults . external_id , null )
54
55
family = try (each. value . family , var. defaults . family , null )
55
56
force_delete = try (each. value . force_delete , var. defaults . force_delete , null )
You can’t perform that action at this time.
0 commit comments