Skip to content

Commit

Permalink
Merge pull request #140 from ExpediaGroup/feature/fix_dd_provider
Browse files Browse the repository at this point in the history
feature/fix dd provider
  • Loading branch information
DhrubajyotiSadhu authored Mar 26, 2024
2 parents 253761d + ec8181d commit 3d67b00
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@ 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.3.2] - 2024-03-26
### Updated
- Removed the datadog explicit provider configuration as suggested here: https://developer.hashicorp.com/terraform/language/modules/develop/providers#legacy-shared-modules-with-provider-configurations

## [4.3.1] - 2024-02-22
### Updated
- Updated eks to use instance name instead of hard coding.
Expand Down
5 changes: 0 additions & 5 deletions common.tf
Original file line number Diff line number Diff line change
Expand Up @@ -64,8 +64,3 @@ data "external" "datadog_key" {
count = length(var.datadog_key_secret_name) > 0 ? 1 : 0
program = ["echo", "${data.aws_secretsmanager_secret_version.datadog_key[0].secret_string}"]
}

provider "datadog" {
api_key = chomp(data.external.datadog_key[0].result["api_key"])
app_key = chomp(data.external.datadog_key[0].result["app_key"])
}

0 comments on commit 3d67b00

Please sign in to comment.