The datadog_monitor
resource has a tags
that expects a Set of Strings
. By using default tags in some places, which we concatenate with tags defined in other places, it’s easy that, by accidente, a List of Strings (with repeated strings/tags) is given in this field instead of a set. My question is whether this is acceptable (maybe the first things it does under the hood is turn the list into a set), or whether it might lead to unexpected behaviour and it is essential to make sure a proper set of tags is used (therefore with no repeats)
Thank you