Skip to content

Commit a7ddb19

Browse files
authored
Release v1.0.0 (#15)
1 parent 91c14f3 commit a7ddb19

File tree

4 files changed

+10
-6
lines changed

4 files changed

+10
-6
lines changed

README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
[![License](https://img.shields.io/badge/license-Apache--2.0-blue)](https://github.com/DataDog/terraform-aws-lambda-datadog/blob/main/LICENSE)
44

5-
Use this Terraform module to install Datadog monitoring for AWS Elastic Container Service tasks.
5+
Use this [Terraform module](https://registry.terraform.io/modules/DataDog/ecs-datadog/aws/latest) to install Datadog monitoring for AWS Elastic Container Service tasks.
66

77
This Terraform module wraps the [aws_ecs_task_definition](https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/ecs_task_definition) resource and automatically configures your task definition for Datadog monitoring.
88

@@ -14,7 +14,8 @@ For more information on the ECS Fargate module, reference the submodule [documen
1414

1515
```hcl
1616
module "datadog_ecs_fargate_task" {
17-
source = "DataDog/ecs-datadog/aws//modules/ecs_fargate"
17+
source = "DataDog/ecs-datadog/aws//modules/ecs_fargate"
18+
version = "1.0.0"
1819
1920
# Datadog Configuration
2021
dd_api_key_secret = {

examples/ecs_fargate/README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,8 @@ terraform apply
2121

2222
```hcl
2323
module "datadog_ecs_fargate_task" {
24-
source = "DataDog/ecs-datadog/aws//modules/ecs_fargate"
24+
source = "DataDog/ecs-datadog/aws//modules/ecs_fargate"
25+
version = "1.0.0"
2526
2627
# Configure Datadog
2728
dd_api_key = var.dd_api_key

modules/ecs_fargate/README.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,8 @@ This Terraform module wraps the [aws_ecs_task_definition](https://registry.terra
1515

1616
```hcl
1717
module "ecs_fargate_task" {
18-
source = "DataDog/ecs-datadog/aws//modules/ecs_fargate"
18+
source = "DataDog/ecs-datadog/aws//modules/ecs_fargate"
19+
version = "1.0.0"
1920
2021
# Datadog Configuration
2122
dd_api_key_secret_arn = "arn:aws:secretsmanager:us-east-1:0000000000:secret:example-secret"
@@ -115,7 +116,8 @@ resource "aws_ecs_task_definition" "example" {
115116

116117
```hcl
117118
resource "datadog_ecs_fargate_task" "example" {
118-
source = "DataDog/ecs-datadog/aws//modules/ecs_fargate"
119+
source = "DataDog/ecs-datadog/aws//modules/ecs_fargate"
120+
version = "1.0.0"
119121
120122
dd_api_key = "XXXXXXXXXXX"
121123

modules/ecs_fargate/datadog.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
# Version and Install Info
77
locals {
88
# Datadog ECS task tags
9-
version = "0.0.0"
9+
version = "1.0.0"
1010

1111
install_info_tool = "terraform"
1212
install_info_tool_version = "terraform-aws-ecs-datadog"

0 commit comments

Comments
 (0)