gpt4 book ai didi

amazon-s3 - 从 terraform 在 AWS S3 中上传多个文件

转载 作者:行者123 更新时间:2023-12-01 07:50:13 24 4
gpt4 key购买 nike

我想将多个文件从本地设备中的特定文件夹上传到 AWS S3。我遇到了以下错误。
enter image description here
这是我的 terraform 代码。

resource "aws_s3_bucket" "testbucket" {
bucket = "test-terraform-pawan-1"
acl = "private"

tags = {
Name = "test-terraform"
Environment = "test"
}
}

resource "aws_s3_bucket_object" "uploadfile" {
bucket = "test-terraform-pawan-1"
key = "index.html"
source = "/home/pawan/Documents/Projects/"

}
我怎么解决这个问题?

最佳答案

您正在尝试上传目录,而 Terraform 需要源字段中的单个文件。尚不支持将文件夹上传到 S3 存储桶。

但是,您可以按照建议使用 null_resource 配置程序调用 awscli 命令 here .

resource "null_resource" "remove_and_upload_to_s3" {
provisioner "local-exec" {
command = "aws s3 sync ${path.module}/s3Contents s3://${aws_s3_bucket.site.id}"
}
}

关于amazon-s3 - 从 terraform 在 AWS S3 中上传多个文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57456167/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com