From f7b414bb84de3f4baec73a4ed8d2211ba5e3a024 Mon Sep 17 00:00:00 2001 From: Quentin Manfroi Date: Mon, 20 Aug 2018 14:28:59 +0200 Subject: [PATCH] MON-273 add example in description --- common/filter-tags/README.md | 2 +- common/filter-tags/inputs.tf | 4 +--- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/common/filter-tags/README.md b/common/filter-tags/README.md index 033701f..5f19e92 100644 --- a/common/filter-tags/README.md +++ b/common/filter-tags/README.md @@ -28,7 +28,7 @@ Creates all kinds of filters tags patterns depending of the monitor type and dir | Name | Description | Type | Default | Required | |------|-------------|:----:|:-----:|:-----:| | environment | Architecture Environment | string | - | yes | -| extra_tags | Extra optional tags | list | `` | no | +| extra_tags | Extra optional tags (i.e. ["tag1:val1", "tag2:val2"]) | list | `` | no | | filter_tags_custom | Tags used for custom filtering when filter_tags_use_defaults is false | string | `*` | no | | filter_tags_use_defaults | Use default filter tags convention | string | `true` | no | | resource | The dedicated tag for the resource | string | - | yes | diff --git a/common/filter-tags/inputs.tf b/common/filter-tags/inputs.tf index 82d5192..3e5abad 100644 --- a/common/filter-tags/inputs.tf +++ b/common/filter-tags/inputs.tf @@ -19,9 +19,7 @@ variable "filter_tags_custom" { } variable "extra_tags" { - description = "Extra optional tags" + description = "Extra optional tags (i.e. [\"tag1:val1\", \"tag2:val2\"])" type = "list" default = [] - - # Example of value to add optional tags : ["tag1:val1", "tag2:val2"] }