mirror of
https://github.com/opentofu/opentofu.git
synced 2025-01-09 23:54:17 -06:00
d06138d052
* provider/datadog #9375: Refactor tags to a list instead of a map. Tags are allowed to be but not restricted to, key value pairs (ie: foo:bar) but are esssentially strings. This changes allows using, and mixing of tags with form "foo" and "foo:bar". It also allows using duplicate keys like "foo:bar" and "foo:baz". * provider/datadog update import test.
54 lines
1.2 KiB
Go
54 lines
1.2 KiB
Go
package datadog
|
|
|
|
import (
|
|
"github.com/hashicorp/terraform/helper/resource"
|
|
"testing"
|
|
)
|
|
|
|
func TestDatadogMonitor_import(t *testing.T) {
|
|
resourceName := "datadog_monitor.foo"
|
|
|
|
resource.Test(t, resource.TestCase{
|
|
PreCheck: func() { testAccPreCheck(t) },
|
|
Providers: testAccProviders,
|
|
CheckDestroy: testAccCheckDatadogMonitorDestroy,
|
|
Steps: []resource.TestStep{
|
|
resource.TestStep{
|
|
Config: testAccCheckDatadogMonitorConfigImported,
|
|
},
|
|
resource.TestStep{
|
|
ResourceName: resourceName,
|
|
ImportState: true,
|
|
ImportStateVerify: true,
|
|
},
|
|
},
|
|
})
|
|
}
|
|
|
|
const testAccCheckDatadogMonitorConfigImported = `
|
|
resource "datadog_monitor" "foo" {
|
|
name = "name for monitor foo"
|
|
type = "metric alert"
|
|
message = "some message Notify: @hipchat-channel"
|
|
escalation_message = "the situation has escalated @pagerduty"
|
|
|
|
query = "avg(last_1h):avg:aws.ec2.cpu{environment:foo,host:foo} by {host} > 2.5"
|
|
|
|
thresholds {
|
|
ok = 1.5
|
|
warning = 2.3
|
|
critical = 2.5
|
|
}
|
|
|
|
notify_no_data = false
|
|
renotify_interval = 60
|
|
|
|
notify_audit = false
|
|
timeout_h = 60
|
|
include_tags = true
|
|
require_full_window = true
|
|
locked = false
|
|
tags = ["foo:bar", "bar:baz"]
|
|
}
|
|
`
|