Skip to content

Commit 79e61fe

Browse files
aknyshosterman
andauthored
Use YAM config for Datadog monitors. Update to TF 0.12/0.13. Update to context.tf. Add example and tests (cloudposse#14)
* Update to TF 0.12/0.13. Update to `context.tf`. Add example and tests * Update to TF 0.12/0.13. Update to `context.tf`. Add example and tests * Use YAML config for Datadog monitors. Update to TF 0.12/0.13. Update to `context.tf`. Add example and tests * Update chatops.yml * Updates * Updates * Updates * Updates * Updates * Updates * Update examples/complete/providers.tf Co-authored-by: Erik Osterman <[email protected]> * Updates Co-authored-by: Erik Osterman <[email protected]>
1 parent bc41b66 commit 79e61fe

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

48 files changed

+1831
-1279
lines changed

.editorconfig

+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
# Unix-style newlines with a newline ending every file
2+
[*]
3+
charset = utf-8
4+
end_of_line = lf
5+
indent_size = 2
6+
indent_style = space
7+
insert_final_newline = true
8+
trim_trailing_whitespace = true
9+
10+
[*.{tf,tfvars}]
11+
indent_size = 2
12+
indent_style = space
13+
14+
[*.md]
15+
max_line_length = 0
16+
trim_trailing_whitespace = false
17+
18+
# Override for Makefile
19+
[{Makefile, makefile, GNUmakefile, Makefile.*}]
20+
tab_width = 2
21+
indent_style = tab
22+
indent_size = 4
23+
24+
[COMMIT_EDITMSG]
25+
max_line_length = 0

.travis.yml

-16
This file was deleted.

LICENSE

+1-1
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@
186186
same "printed page" as the copyright notice for easier
187187
identification within third-party archives.
188188

189-
Copyright 2017 Cloud Posse, LLC
189+
Copyright 2017-2020 Cloud Posse, LLC
190190

191191
Licensed under the Apache License, Version 2.0 (the "License");
192192
you may not use this file except in compliance with the License.

README.md

+185-78
Large diffs are not rendered by default.

README.yaml

+32-15
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,6 @@ github_repo: cloudposse/terraform-datadog-monitor
3030

3131
# Badges to display
3232
badges:
33-
- name: "Build Status"
34-
image: "https://travis-ci.org/cloudposse/terraform-datadog-monitor.svg?branch=master"
35-
url: "https://travis-ci.org/cloudposse/terraform-datadog-monitor"
3633
- name: "Latest Release"
3734
image: "https://img.shields.io/github/release/cloudposse/terraform-datadog-monitor.svg"
3835
url: "https://github.com/cloudposse/terraform-datadog-monitor/releases/latest"
@@ -42,35 +39,55 @@ badges:
4239

4340
related:
4441
- name: "terraform-aws-datadog-integration"
45-
description: "Terraform Module for integration DataDog with AWS"
42+
description: "Terraform module to configure Datadog AWS integration"
4643
url: "https://github.com/cloudposse/terraform-aws-datadog-integration"
4744

4845
# Short description of this project
4946
description: |-
50-
Terraform module repository with a number of common configurations ("submodules") of Datadog monitors
47+
Terraform module to configure [Datadog monitors](https://docs.datadoghq.com/api/v1/monitors/).
5148
5249
introduction: |-
53-
## Datadog Monitors Catalog
50+
Datadog monitors are configured in a YAML configuration file.
51+
52+
See [monitors.yaml](examples/complete/monitors.yaml) for monitor configuration examples.
53+
54+
For more details, refer to:
55+
56+
- [Terraform Datadog monitor resource](https://registry.terraform.io/providers/DataDog/datadog/latest/docs/resources/monitor)
57+
- [Create a monitor](https://docs.datadoghq.com/api/v1/monitors/#create-a-monitor)
5458
55-
- [Load Average](modules/load_average) - Terraform module to provision Load Average monitors
56-
- [CPU](modules/cpu) - Terraform module to provision CPU Usage monitors
57-
- [Memory](modules/memory) - Terraform module to provision Memory Usage monitors
58-
- [Swap](modules/swap) - Terraform module to provision Swap Space monitors
5959
6060
# How to use this project
6161
usage: |-
62-
- [Load Average](modules/load_average)
63-
- [CPU](modules/cpu)
64-
- [Memory](modules/memory)
65-
- [Swap](modules/swap)
62+
For a complete example, see [examples/complete](examples/complete).
63+
64+
```hcl
65+
locals {
66+
datadog_monitors = yamldecode(file("monitors.yaml"))
67+
}
68+
69+
module "datadog_monitors" {
70+
source = "git::https://github.com/cloudposse/terraform-datadog-monitor.git?ref=master"
71+
72+
datadog_monitors = local.datadog_monitors
73+
alert_tags = ["@opsgenie"]
74+
75+
context = module.this.context
76+
}
77+
```
78+
79+
examples: |-
80+
Review the [complete example](examples/complete) to see how to use this module.
6681
6782
include:
6883
- "docs/targets.md"
6984
- "docs/terraform.md"
7085

7186
# Contributors to this project
7287
contributors:
88+
- name: "Erik Osterman"
89+
github: "osterman"
7390
- name: "Andriy Knysh"
7491
github: "aknysh"
7592
- name: "Vladimir"
76-
github: "SweetOps"
93+
github: "SweetOps"

context.tf

+167
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,167 @@
1+
#
2+
# ONLY EDIT THIS FILE IN github.com/cloudposse/terraform-null-label
3+
# All other instances of this file should be a copy of that one
4+
#
5+
#
6+
# Copy this file from https://github.com/cloudposse/terraform-null-label/blob/master/exports/context.tf
7+
# and then place it in your Terraform module to automatically get
8+
# Cloud Posse's standard configuration inputs suitable for passing
9+
# to Cloud Posse modules.
10+
#
11+
# Modules should access the whole context as `module.this.context`
12+
# to get the input variables with nulls for defaults,
13+
# for example `context = module.this.context`,
14+
# and access individual variables as `module.this.<var>`,
15+
# with final values filled in.
16+
#
17+
# For example, when using defaults, `module.this.context.delimiter`
18+
# will be null, and `module.this.delimiter` will be `-` (hyphen).
19+
#
20+
21+
module "this" {
22+
source = "git::https://github.com/cloudposse/terraform-null-label.git?ref=tags/0.19.2"
23+
24+
enabled = var.enabled
25+
namespace = var.namespace
26+
environment = var.environment
27+
stage = var.stage
28+
name = var.name
29+
delimiter = var.delimiter
30+
attributes = var.attributes
31+
tags = var.tags
32+
additional_tag_map = var.additional_tag_map
33+
label_order = var.label_order
34+
regex_replace_chars = var.regex_replace_chars
35+
id_length_limit = var.id_length_limit
36+
37+
context = var.context
38+
}
39+
40+
# Copy contents of cloudposse/terraform-null-label/variables.tf here
41+
42+
variable "context" {
43+
type = object({
44+
enabled = bool
45+
namespace = string
46+
environment = string
47+
stage = string
48+
name = string
49+
delimiter = string
50+
attributes = list(string)
51+
tags = map(string)
52+
additional_tag_map = map(string)
53+
regex_replace_chars = string
54+
label_order = list(string)
55+
id_length_limit = number
56+
})
57+
default = {
58+
enabled = true
59+
namespace = null
60+
environment = null
61+
stage = null
62+
name = null
63+
delimiter = null
64+
attributes = []
65+
tags = {}
66+
additional_tag_map = {}
67+
regex_replace_chars = null
68+
label_order = []
69+
id_length_limit = null
70+
}
71+
description = <<-EOT
72+
Single object for setting entire context at once.
73+
See description of individual variables for details.
74+
Leave string and numeric variables as `null` to use default value.
75+
Individual variable settings (non-null) override settings in context object,
76+
except for attributes, tags, and additional_tag_map, which are merged.
77+
EOT
78+
}
79+
80+
variable "enabled" {
81+
type = bool
82+
default = null
83+
description = "Set to false to prevent the module from creating any resources"
84+
}
85+
86+
variable "namespace" {
87+
type = string
88+
default = null
89+
description = "Namespace, which could be your organization name or abbreviation, e.g. 'eg' or 'cp'"
90+
}
91+
92+
variable "environment" {
93+
type = string
94+
default = null
95+
description = "Environment, e.g. 'uw2', 'us-west-2', OR 'prod', 'staging', 'dev', 'UAT'"
96+
}
97+
98+
variable "stage" {
99+
type = string
100+
default = null
101+
description = "Stage, e.g. 'prod', 'staging', 'dev', OR 'source', 'build', 'test', 'deploy', 'release'"
102+
}
103+
104+
variable "name" {
105+
type = string
106+
default = null
107+
description = "Solution name, e.g. 'app' or 'jenkins'"
108+
}
109+
110+
variable "delimiter" {
111+
type = string
112+
default = null
113+
description = <<-EOT
114+
Delimiter to be used between `namespace`, `environment`, `stage`, `name` and `attributes`.
115+
Defaults to `-` (hyphen). Set to `""` to use no delimiter at all.
116+
EOT
117+
}
118+
119+
variable "attributes" {
120+
type = list(string)
121+
default = []
122+
description = "Additional attributes (e.g. `1`)"
123+
}
124+
125+
variable "tags" {
126+
type = map(string)
127+
default = {}
128+
description = "Additional tags (e.g. `map('BusinessUnit','XYZ')`"
129+
}
130+
131+
variable "additional_tag_map" {
132+
type = map(string)
133+
default = {}
134+
description = "Additional tags for appending to tags_as_list_of_maps. Not added to `tags`."
135+
}
136+
137+
variable "label_order" {
138+
type = list(string)
139+
default = null
140+
description = <<-EOT
141+
The naming order of the id output and Name tag.
142+
Defaults to ["namespace", "environment", "stage", "name", "attributes"].
143+
You can omit any of the 5 elements, but at least one must be present.
144+
EOT
145+
}
146+
147+
variable "regex_replace_chars" {
148+
type = string
149+
default = null
150+
description = <<-EOT
151+
Regex to replace chars with empty string in `namespace`, `environment`, `stage` and `name`.
152+
If not set, `"/[^a-zA-Z0-9-]/"` is used to remove all characters other than hyphens, letters and digits.
153+
EOT
154+
}
155+
156+
variable "id_length_limit" {
157+
type = number
158+
default = null
159+
description = <<-EOT
160+
Limit `id` to this many characters.
161+
Set to `0` for unlimited length.
162+
Set to `null` for default, which is `0`.
163+
Does not affect `id_full`.
164+
EOT
165+
}
166+
167+
#### End of copy of cloudposse/terraform-null-label/variables.tf

docs/targets.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
1+
<!-- markdownlint-disable -->
12
## Makefile Targets
2-
```
3+
```text
34
Available targets:
45
56
help Help screen
@@ -8,3 +9,4 @@ Available targets:
89
lint Lint terraform code
910
1011
```
12+
<!-- markdownlint-restore -->

docs/terraform.md

+43
Original file line numberDiff line numberDiff line change
@@ -1 +1,44 @@
1+
<!-- markdownlint-disable -->
2+
## Requirements
13

4+
| Name | Version |
5+
|------|---------|
6+
| terraform | >= 0.12.0 |
7+
| aws | >= 2.0 |
8+
| datadog | >= 2.12 |
9+
| local | >= 1.3 |
10+
11+
## Providers
12+
13+
| Name | Version |
14+
|------|---------|
15+
| datadog | >= 2.12 |
16+
17+
## Inputs
18+
19+
| Name | Description | Type | Default | Required |
20+
|------|-------------|------|---------|:--------:|
21+
| additional\_tag\_map | Additional tags for appending to tags\_as\_list\_of\_maps. Not added to `tags`. | `map(string)` | `{}` | no |
22+
| alert\_tags | List of alert tags to add to all alert messages, e.g. `["@opsgenie"]` or `["@devops", "@opsgenie"]` | `list(string)` | `null` | no |
23+
| alert\_tags\_separator | Separator for the alert tags. All strings from the `alert_tags` variable will be joined into one string using the separator and then added to the alert message | `string` | `"\n"` | no |
24+
| attributes | Additional attributes (e.g. `1`) | `list(string)` | `[]` | no |
25+
| context | Single object for setting entire context at once.<br>See description of individual variables for details.<br>Leave string and numeric variables as `null` to use default value.<br>Individual variable settings (non-null) override settings in context object,<br>except for attributes, tags, and additional\_tag\_map, which are merged. | <pre>object({<br> enabled = bool<br> namespace = string<br> environment = string<br> stage = string<br> name = string<br> delimiter = string<br> attributes = list(string)<br> tags = map(string)<br> additional_tag_map = map(string)<br> regex_replace_chars = string<br> label_order = list(string)<br> id_length_limit = number<br> })</pre> | <pre>{<br> "additional_tag_map": {},<br> "attributes": [],<br> "delimiter": null,<br> "enabled": true,<br> "environment": null,<br> "id_length_limit": null,<br> "label_order": [],<br> "name": null,<br> "namespace": null,<br> "regex_replace_chars": null,<br> "stage": null,<br> "tags": {}<br>}</pre> | no |
26+
| datadog\_monitors | List of Datadog monitor configurations | <pre>map(object({<br> name = string<br> type = string<br> message = string<br> escalation_message = string<br> query = string<br> tags = list(string)<br> notify_no_data = bool<br> new_host_delay = number<br> evaluation_delay = number<br> no_data_timeframe = number<br> renotify_interval = number<br> notify_audit = bool<br> timeout_h = number<br> enable_logs_sample = bool<br> include_tags = bool<br> require_full_window = bool<br> locked = bool<br> force_delete = bool<br> threshold_windows = map(any)<br> thresholds = map(any)<br> }))</pre> | n/a | yes |
27+
| delimiter | Delimiter to be used between `namespace`, `environment`, `stage`, `name` and `attributes`.<br>Defaults to `-` (hyphen). Set to `""` to use no delimiter at all. | `string` | `null` | no |
28+
| enabled | Set to false to prevent the module from creating any resources | `bool` | `null` | no |
29+
| environment | Environment, e.g. 'uw2', 'us-west-2', OR 'prod', 'staging', 'dev', 'UAT' | `string` | `null` | no |
30+
| id\_length\_limit | Limit `id` to this many characters.<br>Set to `0` for unlimited length.<br>Set to `null` for default, which is `0`.<br>Does not affect `id_full`. | `number` | `null` | no |
31+
| label\_order | The naming order of the id output and Name tag.<br>Defaults to ["namespace", "environment", "stage", "name", "attributes"].<br>You can omit any of the 5 elements, but at least one must be present. | `list(string)` | `null` | no |
32+
| name | Solution name, e.g. 'app' or 'jenkins' | `string` | `null` | no |
33+
| namespace | Namespace, which could be your organization name or abbreviation, e.g. 'eg' or 'cp' | `string` | `null` | no |
34+
| regex\_replace\_chars | Regex to replace chars with empty string in `namespace`, `environment`, `stage` and `name`.<br>If not set, `"/[^a-zA-Z0-9-]/"` is used to remove all characters other than hyphens, letters and digits. | `string` | `null` | no |
35+
| stage | Stage, e.g. 'prod', 'staging', 'dev', OR 'source', 'build', 'test', 'deploy', 'release' | `string` | `null` | no |
36+
| tags | Additional tags (e.g. `map('BusinessUnit','XYZ')` | `map(string)` | `{}` | no |
37+
38+
## Outputs
39+
40+
| Name | Description |
41+
|------|-------------|
42+
| datadog\_monitor\_names | Names of the created Datadog monitors |
43+
44+
<!-- markdownlint-restore -->

0 commit comments

Comments
 (0)