简体   繁体   English

将元数据添加到 terraform 中的 S3 对象

[英]add metadata to S3 object in terraform

I am trying to add metadata during the upload of a new file based on an existing file in S3.我正在尝试根据 S3 中的现有文件在上传新文件期间添加元数据。 The code I am using is the following:我使用的代码如下:

provider "aws" {
  region  = "xxx"
  profile = "xxx"
}

data "aws_s3_bucket_object" "index_cdn" {
  bucket = "bucket name"
  key    = "index.html"
}

resource "aws_s3_bucket_object" "index" {
  bucket       = "bucket name"
  key          = "index_new.html"
  source       = "${path.module}/index.html"
  content_type = "text/html"
  
  metadata     = lower(data.aws_s3_bucket_object.index_cdn.metadata)
}

output "metadata" {
  value = data.aws_s3_bucket_object.index_cdn.metadata
}

It fails with the following error message.它失败并显示以下错误消息。

Error: Incorrect attribute value type

  on main.tf line xx, in resource "aws_s3_bucket_object" "index":
  xx:   metadata     = lower(data.aws_s3_bucket_object.index_cdn.metadata)

Inappropriate value for attribute "metadata": map of string required.

When I run the code without the code block resource "aws_s3_bucket_object" "index" than the output is the following:当我在没有代码块resource "aws_s3_bucket_object" "index"情况下运行代码时,输​​出如下:

Plan: 0 to add, 0 to change, 0 to destroy.

Changes to Outputs:
  + metadata = {
      + "Codebuild-Buildarn"       = "arn:aws:codebuild:xxxxx"
      + "Codebuild-Content-Md5"    = "716d3e5bc7c972f89033aad7dd6c9a9f"
      + "Codebuild-Content-Sha256" = "d015e0a093938b21135c2ba5abc23278d4c5961d7e18aa8e3b9a748cc09e6bc7"
    }

Any idea how to resolve it?知道如何解决吗? Thanks for the help.谢谢您的帮助。

应该是, keys应该是小写的:

 metadata     = {for k, v in data.aws_s3_bucket_object.index_cdn.metadata: lower(k) => v}

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM