3.1.0 (2023-01-26)
3.0.0 (2022-04-05)
- 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)
- enable support for Datadog provider 3.x (e42de0e)
2.6.1 (2022-03-07)
2.6.0 (2022-01-19)
2.5.0 (2021-10-01)
2.4.0 (2021-08-25)
2.3.1 (2021-08-17)
2.3.0 (2021-07-14)
2.2.0 (2021-03-19)
- enable support for terraform 0.14 (c65a0d0)
2.1.0 (2021-03-16)
- changes dd lambda default version from v3.17.0 to v3.27.0 (8e455a8)
2.0.1 (2021-01-22)
2.0.0 (2020-11-06)
- drop support for terraform 0.12.x (be79b7e)
- 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)
- Revert "fix: use proper provider source for datadog" (7240d04)
1.3.4 (2020-11-03)
- use proper provider source for datadog (6f292e7)
1.3.3 (2020-11-03)
- 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)
1.3.1 (2020-10-25)
1.3.0 (2020-09-02)
- log forwarding: support DdSite option + upgrade default CF template version used (1e0f7bc)
1.2.1 (2020-08-10)
- use name_prefix instead of static name to avoid (36a8077)
1.2.0 (2020-07-02)
- aws integration: add options to specify ignored regions and tags to filter out EC2 instances (#10) (452a995)
1.1.0 (2020-06-29)
- add DdApiKey dummy value for CF stack (c6c7ddd)
- CF: use datadog supplied CF stack template (1ecdb22)
- Also set conditional for ForwarderRole (d0ecc10)
- use AWS Secrets Manager instead of supplying API Key parameter (647e8e9)
- Initial public release