Skip to content

Commit 97ad006

Browse files
authored
Added scheduling options (cloudposse#79)
1 parent 501f648 commit 97ad006

File tree

5 files changed

+18
-8
lines changed

5 files changed

+18
-8
lines changed

README.md

-4
Original file line numberDiff line numberDiff line change
@@ -129,10 +129,6 @@ We highly recommend that in your code you pin the version to the exact version y
129129
using so that your infrastructure remains stable, and update versions in a
130130
systematic way so that they do not catch you by surprise.
131131

132-
Also, because of a bug in the Terraform registry ([hashicorp/terraform#21417](https://github.com/hashicorp/terraform/issues/21417)),
133-
the registry shows many of our inputs as required when in fact they are optional.
134-
The table below correctly indicates which inputs are required.
135-
136132

137133

138134
Provision Datadog monitors from the catalog of YAML definitions:

examples/rbac/main.tf

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module "monitor_configs" {
22
source = "cloudposse/config/yaml"
3-
version = "0.8.1"
3+
version = "1.0.2"
44

55
map_config_local_base_path = path.module
66
map_config_paths = var.monitor_paths
@@ -10,7 +10,7 @@ module "monitor_configs" {
1010

1111
module "role_configs" {
1212
source = "cloudposse/config/yaml"
13-
version = "0.8.1"
13+
version = "1.0.2"
1414

1515
map_config_local_base_path = path.module
1616
map_config_paths = var.role_paths

modules/monitors/main.tf

+14
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,20 @@ resource "datadog_monitor" "default" {
4747
trigger_window = lookup(each.value.threshold_windows, "trigger_window", null)
4848
}
4949

50+
dynamic "scheduling_options" {
51+
for_each = lookup(each.value, "scheduling_options", [])
52+
content {
53+
dynamic "evaluation_window" {
54+
for_each = lookup(scheduling_options.value, "evaluation_window", [])
55+
content {
56+
day_starts = lookup(evaluation_window.value, "day_starts", null)
57+
hour_starts = lookup(evaluation_window.value, "hour_starts", null)
58+
month_starts = lookup(evaluation_window.value, "month_starts", null)
59+
}
60+
}
61+
}
62+
}
63+
5064
# Assign restricted roles
5165
# Only these roles will have access to the monitor according to their permissions
5266
restricted_roles = try(var.restricted_roles_map[each.key], null)

modules/monitors/versions.tf

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ terraform {
44
required_providers {
55
datadog = {
66
source = "datadog/datadog"
7-
version = ">= 3.0.0"
7+
version = ">= 3.18.0"
88
}
99
}
1010
}

modules/synthetics/main.tf

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ locals {
44
enabled = module.this.enabled
55
alert_tags = local.enabled && var.alert_tags != null ? format("%s%s", var.alert_tags_separator, join(var.alert_tags_separator, var.alert_tags)) : ""
66

7-
all_public_locations = sort(keys({ for k, v in data.datadog_synthetics_locations.public_locations.locations : k => v if ! (length(regexall(".*pl:.*", k)) > 0) }))
7+
all_public_locations = sort(keys({ for k, v in data.datadog_synthetics_locations.public_locations.locations : k => v if !(length(regexall(".*pl:.*", k)) > 0) }))
88
}
99

1010
data "datadog_synthetics_locations" "public_locations" {}

0 commit comments

Comments
 (0)