From 400224a21815ad0a318308c09cdadc123dfb3787 Mon Sep 17 00:00:00 2001 From: Jakub Holy Date: Wed, 24 Mar 2021 18:10:45 +0100 Subject: [PATCH] Add docs for task_container_secrets --- variables.tf | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/variables.tf b/variables.tf index 2624ac1..62f4a5e 100644 --- a/variables.tf +++ b/variables.tf @@ -13,8 +13,9 @@ variable "container_name" { } variable "task_container_secrets" { - type = list(object({ name = string, valueFrom = string })) - default = [] + description = "See https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-taskdefinition-secret.html . Beware: Only Secrets Manager secrets supported. The necessary permissions will be added automatically." + type = list(object({ name = string, valueFrom = string })) + default = [] } variable "task_container_secrets_kms_key" {