Skip to content

Commit

Permalink
Merge pull request #211 from schubergphilis/fix-depending-version
Browse files Browse the repository at this point in the history
fix: bump Datadog module to one with fixed dependencies
  • Loading branch information
stefanwb authored Oct 2, 2024
2 parents b6ace9e + b8124c1 commit 84d69a8
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -443,9 +443,9 @@ module "landing_zone" {
| <a name="module_audit_manager_reports"></a> [audit\_manager\_reports](#module\_audit\_manager\_reports) | schubergphilis/mcaf-s3/aws | ~> 0.14.1 |
| <a name="module_aws_config_s3"></a> [aws\_config\_s3](#module\_aws\_config\_s3) | schubergphilis/mcaf-s3/aws | ~> 0.14.1 |
| <a name="module_aws_sso_permission_sets"></a> [aws\_sso\_permission\_sets](#module\_aws\_sso\_permission\_sets) | ./modules/permission-set | n/a |
| <a name="module_datadog_audit"></a> [datadog\_audit](#module\_datadog\_audit) | schubergphilis/mcaf-datadog/aws | ~> 0.8.2 |
| <a name="module_datadog_logging"></a> [datadog\_logging](#module\_datadog\_logging) | schubergphilis/mcaf-datadog/aws | ~> 0.8.2 |
| <a name="module_datadog_master"></a> [datadog\_master](#module\_datadog\_master) | schubergphilis/mcaf-datadog/aws | ~> 0.8.2 |
| <a name="module_datadog_audit"></a> [datadog\_audit](#module\_datadog\_audit) | schubergphilis/mcaf-datadog/aws | ~> 0.8.5 |
| <a name="module_datadog_logging"></a> [datadog\_logging](#module\_datadog\_logging) | schubergphilis/mcaf-datadog/aws | ~> 0.8.5 |
| <a name="module_datadog_master"></a> [datadog\_master](#module\_datadog\_master) | schubergphilis/mcaf-datadog/aws | ~> 0.8.5 |
| <a name="module_kms_key"></a> [kms\_key](#module\_kms\_key) | schubergphilis/mcaf-kms/aws | ~> 0.3.0 |
| <a name="module_kms_key_audit"></a> [kms\_key\_audit](#module\_kms\_key\_audit) | schubergphilis/mcaf-kms/aws | ~> 0.3.0 |
| <a name="module_kms_key_logging"></a> [kms\_key\_logging](#module\_kms\_key\_logging) | schubergphilis/mcaf-kms/aws | ~> 0.3.0 |
Expand Down
6 changes: 3 additions & 3 deletions datadog.tf
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ module "datadog_audit" {
providers = { aws = aws.audit }

source = "schubergphilis/mcaf-datadog/aws"
version = "~> 0.8.2"
version = "~> 0.8.5"

api_key = try(var.datadog.api_key, null)
cspm_resource_collection_enabled = var.datadog.cspm_resource_collection_enabled
Expand All @@ -24,7 +24,7 @@ module "datadog_master" {
count = try(var.datadog.enable_integration, false) == true ? 1 : 0

source = "schubergphilis/mcaf-datadog/aws"
version = "~> 0.8.2"
version = "~> 0.8.5"

api_key = try(var.datadog.api_key, null)
cspm_resource_collection_enabled = var.datadog.cspm_resource_collection_enabled
Expand All @@ -45,7 +45,7 @@ module "datadog_logging" {
providers = { aws = aws.logging }

source = "schubergphilis/mcaf-datadog/aws"
version = "~> 0.8.2"
version = "~> 0.8.5"

api_key = try(var.datadog.api_key, null)
cspm_resource_collection_enabled = var.datadog.cspm_resource_collection_enabled
Expand Down

0 comments on commit 84d69a8

Please sign in to comment.