Skip to content

Commit df82153

Browse files
fix: New release with optional tag var
1 parent c1bd6a5 commit df82153

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

examples/full_integration/main.tf

+4-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ data "aws_caller_identity" "current" {}
2626

2727
module "datadog" {
2828
source = "scribd/datadog/aws"
29-
version = "~>1"
29+
version = "~>3"
3030
aws_region = var.aws_region
3131
datadog_api_key = var.dd_api_key
3232
aws_account_id = data.aws_caller_identity.current.account_id
@@ -35,4 +35,7 @@ module "datadog" {
3535
cloudtrail_bucket_arn = "S3_BUCKET_ARN"
3636

3737
cloudwatch_log_groups = ["cloudwatch_log_group_1", "cloudwatch_log_group_2"]
38+
tags = {
39+
Module = "scribd/datadog/aws"
40+
}
3841
}

0 commit comments

Comments
 (0)