Skip to content

Latest commit

 

History

History
201 lines (93 loc) · 8.96 KB

CHANGELOG.md

File metadata and controls

201 lines (93 loc) · 8.96 KB

3.1.0 (2023-01-26)

Features

  • enable support for Terraform 1.3.x (#51) (1d4c786)

3.0.0 (2022-04-05)

  • feat!: enable support for aws provider 4.0+ (#49) (5bc98cb), closes #49

BREAKING CHANGES

  • This release drops support for AWS provider <4.0

When updating to this version, the diff will show each of the new resources as needing to be created. However, each of the new aws_s3_bucket_* resources relies on S3 API calls that utilize a PUT action in order to modify the target S3 bucket. Because these API calls adhere to standard HTTP methods for REST APIs, they should handle situations where the target configuration already exists (as noted in the HTTP RFC). Given that this is the case, it's not strictly necessary to import any new aws_s3_bucket_* resources that are a one-to-one translation from previous versions of the AWS provider -- on the next terraform apply, they'll attempt the PUT, and update the state with the results as necessary.

2.7.0 (2022-03-07)

Features

  • enable support for Datadog provider 3.x (e42de0e)

2.6.1 (2022-03-07)

Bug Fixes

  • restrict aws provider to <4 for this major branch (#47) (07de45a)

2.6.0 (2022-01-19)

Bug Fixes

  • explicitly specify the versions for semantic-release (#42) (09bd8b9)

Features

  • enable support for Terraform 1.1.3 (#40) (51c5279)

2.5.0 (2021-10-01)

Features

  • added states permissions to dd module's IAM policy (#38) (0cb8ab8)

2.4.0 (2021-08-25)

Features

2.3.1 (2021-08-17)

Bug Fixes

  • Merge pull request #35 from scribd/taylorsmcclure/fix-iam-policy-v2 (7bf7868)

2.3.0 (2021-07-14)

Features

  • enable support for Terraform 1.0 (#32) (5410502)

2.2.0 (2021-03-19)

Features

  • enable support for terraform 0.14 (c65a0d0)

2.1.0 (2021-03-16)

Features

  • changes dd lambda default version from v3.17.0 to v3.27.0 (8e455a8)

2.0.1 (2021-01-22)

Bug Fixes

  • Add missing cloudwatch:ListMetrics access for AWS integration (#27) (f7c80c2)

2.0.0 (2020-11-06)

Features

  • drop support for terraform 0.12.x (be79b7e)

BREAKING CHANGES

  • Please use a version constraint for this module if you are staying on terraform 0.12.x

Example:

module "datadog" {
  source  = "scribd/datadog/aws"
  version = "1.3.5"
  # insert the 1 required variable here
}

1.3.5 (2020-11-06)

Reverts

  • Revert "fix: use proper provider source for datadog" (7240d04)

1.3.4 (2020-11-03)

Bug Fixes

  • use proper provider source for datadog (6f292e7)

1.3.3 (2020-11-03)

Bug Fixes

  • make minimum terraform version requirement an actual minimum (f39e5e6)
  • use a range of versions to limit the required versions (d98714a)

1.3.2 (2020-10-29)

Bug Fixes

  • Add cloudtrail:LookupEvents IAM rights (#19) (bba2d91)

1.3.1 (2020-10-25)

Bug Fixes

  • Add missing IAM permissions for new version of log forwarder (#18) (b741a4b)

1.3.0 (2020-09-02)

Features

  • log forwarding: support DdSite option + upgrade default CF template version used (1e0f7bc)

1.2.1 (2020-08-10)

Bug Fixes

  • use name_prefix instead of static name to avoid (36a8077)

1.2.0 (2020-07-02)

Features

  • aws integration: add options to specify ignored regions and tags to filter out EC2 instances (#10) (452a995)

1.1.0 (2020-06-29)

Features

  • add DdApiKey dummy value for CF stack (c6c7ddd)
  • CF: use datadog supplied CF stack template (1ecdb22)

1.0.0 (2020-04-27)

Bug Fixes

  • Also set conditional for ForwarderRole (d0ecc10)
  • use AWS Secrets Manager instead of supplying API Key parameter (647e8e9)

Features

  • add EXCLUDE_AT_MATCH env variable to datadog (05bae6a)
  • Update AWS DD Forwarder to v3.5.0 (797da3a)

CHANGELOG

  • Initial public release