MON-273 add example in description

This commit is contained in:
Quentin Manfroi 2018-08-20 14:28:59 +02:00
parent 5b457cc505
commit f7b414bb84
2 changed files with 2 additions and 4 deletions

View File

@ -28,7 +28,7 @@ Creates all kinds of filters tags patterns depending of the monitor type and dir
| Name | Description | Type | Default | Required | | Name | Description | Type | Default | Required |
|------|-------------|:----:|:-----:|:-----:| |------|-------------|:----:|:-----:|:-----:|
| environment | Architecture Environment | string | - | yes | | environment | Architecture Environment | string | - | yes |
| extra_tags | Extra optional tags | list | `<list>` | no | | extra_tags | Extra optional tags (i.e. ["tag1:val1", "tag2:val2"]) | list | `<list>` | no |
| filter_tags_custom | Tags used for custom filtering when filter_tags_use_defaults is false | string | `*` | 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 | | filter_tags_use_defaults | Use default filter tags convention | string | `true` | no |
| resource | The dedicated tag for the resource | string | - | yes | | resource | The dedicated tag for the resource | string | - | yes |

View File

@ -19,9 +19,7 @@ variable "filter_tags_custom" {
} }
variable "extra_tags" { variable "extra_tags" {
description = "Extra optional tags" description = "Extra optional tags (i.e. [\"tag1:val1\", \"tag2:val2\"])"
type = "list" type = "list"
default = [] default = []
# Example of value to add optional tags : ["tag1:val1", "tag2:val2"]
} }