Skip to content

Commit cffbd1d

Browse files
authored
1 parent d46b5a0 commit cffbd1d

File tree

4 files changed

+63
-5
lines changed

4 files changed

+63
-5
lines changed

src/CHANGELOG.md

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
## PR [#814](https://github.com/cloudposse/terraform-aws-components/pull/814)
2+
3+
### Possible Breaking Change
4+
5+
The `module "datadog_integration"` and `module "store_write"` had been changed
6+
in an earlier PR from a module without a `count`
7+
to a module with a `count` of zero or one. This PR changes it back to a module
8+
without a count. If you were using the module with a `count` of zero or one,
9+
applying this new version will cause it be destroyed and recreated. This should only
10+
cause a very brief outage in your Datadog monitoring.
11+
12+
### New Integration Options
13+
14+
This PR adds the following new integration options:
15+
16+
- `cspm_resource_collection_enabled` - Enable Datadog Cloud Security Posture Management scanning of your AWS account. See [announcement](https://www.datadoghq.com/product/cloud-security-management/cloud-security-posture-management/) for details.
17+
- `metrics_collection_enabled` - When enabled, a metric-by-metric crawl of the CloudWatch API pulls data and sends it
18+
to Datadog. New metrics are pulled every ten minutes, on average.
19+
- `resource_collection_enabled` - Some Datadog products leverage information about how your AWS resources (
20+
such as S3 Buckets, RDS snapshots, and CloudFront distributions) are configured.
21+
When `resource_collection_enabled` is `true`, Datadog collects this information
22+
by making read-only API calls into your AWS account.

src/README.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
# Component: `datadog-integration`
22

3-
This component is responsible for provisioning Datadog AWS integrations.
3+
This component is responsible for provisioning Datadog AWS integrations. It depends on
4+
the `datadog-configuration` component to get the Datadog API keys.
45

56
See Datadog's [documentation about provisioning keys](https://docs.datadoghq.com/account_management/api-app-keys) for more information.
67

@@ -41,7 +42,7 @@ components:
4142
| Name | Source | Version |
4243
|------|--------|---------|
4344
| <a name="module_datadog_configuration"></a> [datadog\_configuration](#module\_datadog\_configuration) | ../datadog-configuration/modules/datadog_keys | n/a |
44-
| <a name="module_datadog_integration"></a> [datadog\_integration](#module\_datadog\_integration) | cloudposse/datadog-integration/aws | 1.0.0 |
45+
| <a name="module_datadog_integration"></a> [datadog\_integration](#module\_datadog\_integration) | cloudposse/datadog-integration/aws | 1.2.0 |
4546
| <a name="module_iam_roles"></a> [iam\_roles](#module\_iam\_roles) | ../account-map/modules/iam-roles | n/a |
4647
| <a name="module_store_write"></a> [store\_write](#module\_store\_write) | cloudposse/ssm-parameter-store/aws | 0.11.0 |
4748
| <a name="module_this"></a> [this](#module\_this) | cloudposse/label/null | 0.25.0 |
@@ -61,6 +62,7 @@ components:
6162
| <a name="input_attributes"></a> [attributes](#input\_attributes) | ID element. Additional attributes (e.g. `workers` or `cluster`) to add to `id`,<br>in the order they appear in the list. New attributes are appended to the<br>end of the list. The elements of the list are joined by the `delimiter`<br>and treated as a single ID element. | `list(string)` | `[]` | no |
6263
| <a name="input_context"></a> [context](#input\_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. | `any` | <pre>{<br> "additional_tag_map": {},<br> "attributes": [],<br> "delimiter": null,<br> "descriptor_formats": {},<br> "enabled": true,<br> "environment": null,<br> "id_length_limit": null,<br> "label_key_case": null,<br> "label_order": [],<br> "label_value_case": null,<br> "labels_as_tags": [<br> "unset"<br> ],<br> "name": null,<br> "namespace": null,<br> "regex_replace_chars": null,<br> "stage": null,<br> "tags": {},<br> "tenant": null<br>}</pre> | no |
6364
| <a name="input_context_host_and_filter_tags"></a> [context\_host\_and\_filter\_tags](#input\_context\_host\_and\_filter\_tags) | Automatically add host and filter tags for these context keys | `list(string)` | <pre>[<br> "namespace",<br> "tenant",<br> "stage"<br>]</pre> | no |
65+
| <a name="input_cspm_resource_collection_enabled"></a> [cspm\_resource\_collection\_enabled](#input\_cspm\_resource\_collection\_enabled) | Enable Datadog Cloud Security Posture Management scanning of your AWS account.<br>See [announcement](https://www.datadoghq.com/product/cloud-security-management/cloud-security-posture-management/) for details. | `bool` | `null` | no |
6466
| <a name="input_datadog_aws_account_id"></a> [datadog\_aws\_account\_id](#input\_datadog\_aws\_account\_id) | The AWS account ID Datadog's integration servers use for all integrations | `string` | `"464622532012"` | no |
6567
| <a name="input_delimiter"></a> [delimiter](#input\_delimiter) | Delimiter to be used between ID elements.<br>Defaults to `-` (hyphen). Set to `""` to use no delimiter at all. | `string` | `null` | no |
6668
| <a name="input_descriptor_formats"></a> [descriptor\_formats](#input\_descriptor\_formats) | Describe additional descriptors to be output in the `descriptors` output map.<br>Map of maps. Keys are names of descriptors. Values are maps of the form<br>`{<br> format = string<br> labels = list(string)<br>}`<br>(Type is `any` so the map values can later be enhanced to provide additional options.)<br>`format` is a Terraform format string to be passed to the `format()` function.<br>`labels` is a list of labels, in order, to pass to `format()` function.<br>Label values will be normalized before being passed to `format()` so they will be<br>identical to how they appear in `id`.<br>Default is `{}` (`descriptors` output will be empty). | `any` | `{}` | no |
@@ -76,10 +78,12 @@ components:
7678
| <a name="input_label_order"></a> [label\_order](#input\_label\_order) | The order in which the labels (ID elements) appear in the `id`.<br>Defaults to ["namespace", "environment", "stage", "name", "attributes"].<br>You can omit any of the 6 labels ("tenant" is the 6th), but at least one must be present. | `list(string)` | `null` | no |
7779
| <a name="input_label_value_case"></a> [label\_value\_case](#input\_label\_value\_case) | Controls the letter case of ID elements (labels) as included in `id`,<br>set as tag values, and output by this module individually.<br>Does not affect values of tags passed in via the `tags` input.<br>Possible values: `lower`, `title`, `upper` and `none` (no transformation).<br>Set this to `title` and set `delimiter` to `""` to yield Pascal Case IDs.<br>Default value: `lower`. | `string` | `null` | no |
7880
| <a name="input_labels_as_tags"></a> [labels\_as\_tags](#input\_labels\_as\_tags) | Set of labels (ID elements) to include as tags in the `tags` output.<br>Default is to include all labels.<br>Tags with empty values will not be included in the `tags` output.<br>Set to `[]` to suppress all generated tags.<br>**Notes:**<br> The value of the `name` tag, if included, will be the `id`, not the `name`.<br> Unlike other `null-label` inputs, the initial setting of `labels_as_tags` cannot be<br> changed in later chained modules. Attempts to change it will be silently ignored. | `set(string)` | <pre>[<br> "default"<br>]</pre> | no |
81+
| <a name="input_metrics_collection_enabled"></a> [metrics\_collection\_enabled](#input\_metrics\_collection\_enabled) | When enabled, a metric-by-metric crawl of the CloudWatch API pulls data and sends it<br>to Datadog. New metrics are pulled every ten minutes, on average. | `bool` | `null` | no |
7982
| <a name="input_name"></a> [name](#input\_name) | ID element. Usually the component or solution name, e.g. 'app' or 'jenkins'.<br>This is the only ID element not also included as a `tag`.<br>The "name" tag is set to the full `id` string. There is no tag with the value of the `name` input. | `string` | `null` | no |
8083
| <a name="input_namespace"></a> [namespace](#input\_namespace) | ID element. Usually an abbreviation of your organization name, e.g. 'eg' or 'cp', to help ensure generated IDs are globally unique | `string` | `null` | no |
8184
| <a name="input_regex_replace_chars"></a> [regex\_replace\_chars](#input\_regex\_replace\_chars) | Terraform regular expression (regex) string.<br>Characters matching the regex will be removed from the ID elements.<br>If not set, `"/[^a-zA-Z0-9-]/"` is used to remove all characters other than hyphens, letters and digits. | `string` | `null` | no |
8285
| <a name="input_region"></a> [region](#input\_region) | AWS Region | `string` | n/a | yes |
86+
| <a name="input_resource_collection_enabled"></a> [resource\_collection\_enabled](#input\_resource\_collection\_enabled) | Some Datadog products leverage information about how your AWS resources<br>(such as S3 Buckets, RDS snapshots, and CloudFront distributions) are configured.<br>When `resource_collection_enabled` is `true`, Datadog collects this information<br>by making read-only API calls into your AWS account. | `bool` | `null` | no |
8387
| <a name="input_stage"></a> [stage](#input\_stage) | ID element. Usually used to indicate role, e.g. 'prod', 'staging', 'source', 'build', 'test', 'deploy', 'release' | `string` | `null` | no |
8488
| <a name="input_tags"></a> [tags](#input\_tags) | Additional tags (e.g. `{'BusinessUnit': 'XYZ'}`).<br>Neither the tag keys nor the tag values will be modified by this module. | `map(string)` | `{}` | no |
8589
| <a name="input_tenant"></a> [tenant](#input\_tenant) | ID element \_(Rarely used, not included by default)\_. A customer identifier, indicating who this instance of a resource is for | `string` | `null` | no |

src/main.tf

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,16 +10,19 @@ data "aws_regions" "all" {
1010

1111
module "datadog_integration" {
1212
source = "cloudposse/datadog-integration/aws"
13-
version = "1.0.0"
13+
version = "1.2.0"
1414

15-
count = module.this.enabled && length(var.integrations) > 0 ? 1 : 0
15+
enabled = module.this.enabled && length(var.integrations) > 0
1616

1717
datadog_aws_account_id = var.datadog_aws_account_id
1818
integrations = var.integrations
1919
filter_tags = local.filter_tags
2020
host_tags = local.host_tags
2121
excluded_regions = concat(var.excluded_regions, tolist(local.excluded_list_by_include))
2222
account_specific_namespace_rules = var.account_specific_namespace_rules
23+
cspm_resource_collection_enabled = var.cspm_resource_collection_enabled
24+
metrics_collection_enabled = var.metrics_collection_enabled
25+
resource_collection_enabled = var.resource_collection_enabled
2326

2427
context = module.this.context
2528
}
@@ -38,9 +41,9 @@ locals {
3841
}
3942

4043
module "store_write" {
41-
count = local.enabled ? 1 : 0
4244
source = "cloudposse/ssm-parameter-store/aws"
4345
version = "0.11.0"
46+
4447
parameter_write = [
4548
{
4649
name = "/datadog/datadog_external_id"

src/variables.tf

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,3 +49,32 @@ variable "context_host_and_filter_tags" {
4949
description = "Automatically add host and filter tags for these context keys"
5050
default = ["namespace", "tenant", "stage"]
5151
}
52+
53+
variable "cspm_resource_collection_enabled" {
54+
type = bool
55+
default = null
56+
description = <<-EOT
57+
Enable Datadog Cloud Security Posture Management scanning of your AWS account.
58+
See [announcement](https://www.datadoghq.com/product/cloud-security-management/cloud-security-posture-management/) for details.
59+
EOT
60+
}
61+
62+
variable "metrics_collection_enabled" {
63+
type = bool
64+
default = null
65+
description = <<-EOT
66+
When enabled, a metric-by-metric crawl of the CloudWatch API pulls data and sends it
67+
to Datadog. New metrics are pulled every ten minutes, on average.
68+
EOT
69+
}
70+
71+
variable "resource_collection_enabled" {
72+
type = bool
73+
default = null
74+
description = <<-EOT
75+
Some Datadog products leverage information about how your AWS resources
76+
(such as S3 Buckets, RDS snapshots, and CloudFront distributions) are configured.
77+
When `resource_collection_enabled` is `true`, Datadog collects this information
78+
by making read-only API calls into your AWS account.
79+
EOT
80+
}

0 commit comments

Comments
 (0)