Skip to content

Commit

Permalink
enhancement: Update mcaf datadog to v0.3.12 (#191)
Browse files Browse the repository at this point in the history
update mcaf datadog to v0.3.12
  • Loading branch information
marcoschreurs authored Oct 2, 2023
1 parent 8eb07a7 commit d00174e
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 @@ -442,9 +442,9 @@ module "landing_zone" {
|------|--------|---------|
| <a name="module_aws_config_s3"></a> [aws\_config\_s3](#module\_aws\_config\_s3) | github.com/schubergphilis/terraform-aws-mcaf-s3 | v0.8.0 |
| <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) | github.com/schubergphilis/terraform-aws-mcaf-datadog | v0.3.11 |
| <a name="module_datadog_logging"></a> [datadog\_logging](#module\_datadog\_logging) | github.com/schubergphilis/terraform-aws-mcaf-datadog | v0.3.11 |
| <a name="module_datadog_master"></a> [datadog\_master](#module\_datadog\_master) | github.com/schubergphilis/terraform-aws-mcaf-datadog | v0.3.11 |
| <a name="module_datadog_audit"></a> [datadog\_audit](#module\_datadog\_audit) | github.com/schubergphilis/terraform-aws-mcaf-datadog | v0.3.12 |
| <a name="module_datadog_logging"></a> [datadog\_logging](#module\_datadog\_logging) | github.com/schubergphilis/terraform-aws-mcaf-datadog | v0.3.12 |
| <a name="module_datadog_master"></a> [datadog\_master](#module\_datadog\_master) | github.com/schubergphilis/terraform-aws-mcaf-datadog | v0.3.12 |
| <a name="module_kms_key"></a> [kms\_key](#module\_kms\_key) | github.com/schubergphilis/terraform-aws-mcaf-kms | v0.2.0 |
| <a name="module_kms_key_audit"></a> [kms\_key\_audit](#module\_kms\_key\_audit) | github.com/schubergphilis/terraform-aws-mcaf-kms | v0.2.0 |
| <a name="module_kms_key_logging"></a> [kms\_key\_logging](#module\_kms\_key\_logging) | github.com/schubergphilis/terraform-aws-mcaf-kms | v0.2.0 |
Expand Down
6 changes: 3 additions & 3 deletions datadog.tf
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ module "datadog_audit" {
count = try(var.datadog.enable_integration, false) == true ? 1 : 0
providers = { aws = aws.audit }

source = "github.com/schubergphilis/terraform-aws-mcaf-datadog?ref=v0.3.11"
source = "github.com/schubergphilis/terraform-aws-mcaf-datadog?ref=v0.3.12"
api_key = try(var.datadog.api_key, null)
excluded_regions = var.datadog_excluded_regions
install_log_forwarder = var.datadog.install_log_forwarder
Expand All @@ -16,7 +16,7 @@ module "datadog_master" {
#checkov:skip=CKV_AWS_124: since this is managed by terraform, we reason that this already provides feedback and a seperate SNS topic is therefore not required
count = try(var.datadog.enable_integration, false) == true ? 1 : 0

source = "github.com/schubergphilis/terraform-aws-mcaf-datadog?ref=v0.3.11"
source = "github.com/schubergphilis/terraform-aws-mcaf-datadog?ref=v0.3.12"
api_key = try(var.datadog.api_key, null)
excluded_regions = var.datadog_excluded_regions
install_log_forwarder = var.datadog.install_log_forwarder
Expand All @@ -30,7 +30,7 @@ module "datadog_logging" {
count = try(var.datadog.enable_integration, false) == true ? 1 : 0
providers = { aws = aws.logging }

source = "github.com/schubergphilis/terraform-aws-mcaf-datadog?ref=v0.3.11"
source = "github.com/schubergphilis/terraform-aws-mcaf-datadog?ref=v0.3.12"
api_key = try(var.datadog.api_key, null)
excluded_regions = var.datadog_excluded_regions
install_log_forwarder = var.datadog.install_log_forwarder
Expand Down

0 comments on commit d00174e

Please sign in to comment.