ojongerius / terraform-provider-datadog

A Terraform plugin to manage Datadog resources.
Mozilla Public License 2.0
29 stars 6 forks source link

Tags should be a map, not list #66

Closed ojongerius closed 8 years ago

ojongerius commented 8 years ago

Tags currently looks like so:

    tags              = ["service_name:foo", "aws-account-alias:bar"]

But could look like so:

   thresholds {
        warning  = 1000
        critical = 1250
    }

One annoying special tag to take care of is "*" .

ojongerius commented 8 years ago

Also; according to the API doco there are 2 places to put tags; as an option of all monitors, or, as far as I recall inside the query, for metric and outlier alerts.

ojongerius commented 8 years ago

Made obsolete by new generic monitor.