Skip to content

Commit

Permalink
changelog and readme
Browse files Browse the repository at this point in the history
  • Loading branch information
Dhrubajyoti Sadhu committed Jan 4, 2024
1 parent ed1e41b commit db0ef4b
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).

## [4.1.6] - 2024-01-03
## [4.2.0] - 2024-01-03
### Fixed
- Added datadog to ECS clusters.

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ For more information please refer to the main [Apiary](https://github.com/Expedi
| tcp_keepalive_time | Sets net.ipv4.tcp_keepalive_time (seconds), currently only supported in ECS. | number | `200` | no |
| tcp_keepalive_intvl | Sets net.ipv4.tcp_keepalive_intvl (seconds), currently only supported in ECS. | number | `30` | no |
| tcp_keepalive_probes | Sets net.ipv4.tcp_keepalive_probes (seconds), currently only supported in ECS. | number | `2` | no |
| datadog_key_secret_name | SecretsManager secret name containing a DataDog API key. This needs to be created manually in AWS secrets manager. | number | `200` | no |
| datadog_key_secret_name | Name of the secret containing the DataDog API key. This needs to be created manually in AWS secrets manager. | number | `200` | no |
| datadog_agent_version | Version of the Datadog Agent running in the ECS cluster. | number | `30` | no |
| include_datadog_agent | Whether to include the datadog-agent container alongside Waggledance. | number | `2` | no |

Expand Down
6 changes: 3 additions & 3 deletions variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -379,19 +379,19 @@ variable "tcp_keepalive_probes" {
}

variable "datadog_key_secret_name" {
description = "SecretsManager secret name containing a DataDog API key"
description = "Name of the secret containing the DataDog API key. This needs to be created manually in AWS secrets manager. This is only applicable to ECS deployments."
type = string
default = ""
}

variable "datadog_agent_version" {
description = "Version of the Datadog Agent running in the ECS cluster"
description = "Version of the Datadog Agent running in the ECS cluster. This is only applicable to ECS deployments."
type = string
default = "7.46.0-jmx"
}

variable "include_datadog_agent" {
description = "Whether to include the datadog-agent container alongside waggledance"
description = "Whether to include the datadog-agent container alongside waggledance. This is only applicable to ECS deployments."
type = bool
default = false
}

0 comments on commit db0ef4b

Please sign in to comment.