From 768cb96f747c29085889000b13778f2cf9053908 Mon Sep 17 00:00:00 2001 From: janli Date: Wed, 3 Apr 2024 12:07:10 -0700 Subject: [PATCH] fix: set datadog provider source --- s3-other.tf | 2 +- version.tf | 4 ++++ vpc-endpoint-service.tf | 4 ++-- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/s3-other.tf b/s3-other.tf index ef4a60d..1c79b36 100644 --- a/s3-other.tf +++ b/s3-other.tf @@ -7,7 +7,7 @@ resource "aws_s3_bucket" "apiary_inventory_bucket" { count = var.s3_enable_inventory == true ? 1 : 0 bucket = local.s3_inventory_bucket - tags = merge(tomap({"Name"="${local.s3_inventory_bucket}"}), "${var.apiary_tags}") + tags = merge(tomap({"Name"="${local.s3_inventory_bucket}"}), var.apiary_tags) policy = <