Skip to content

Commit

Permalink
fix: tomap
Browse files Browse the repository at this point in the history
  • Loading branch information
githubjianli authored Nov 14, 2023
1 parent 7001216 commit 42278dc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion s3-other.tf
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ resource "aws_s3_bucket_notification" "apiary_managed_logs_bucket" {
resource "aws_s3_bucket" "apiary_access_logs_hive" {
count = local.enable_apiary_s3_log_hive ? 1 : 0
bucket = local.apiary_s3_hive_logs_bucket
tags = merge(map("Name", local.apiary_s3_hive_logs_bucket), var.apiary_tags)
tags = merge(tomap({"Name"=local.apiary_s3_hive_logs_bucket}), var.apiary_tags)
policy = <<EOF
{
"Version":"2012-10-17",
Expand Down

0 comments on commit 42278dc

Please sign in to comment.