Replies: 1 comment
-
@cfilipee você está tentando criar uma ACL (access control list) de um bucket e não um bucket. Este recurso não aceita tags. O recurso que você precisa utilizar para criar um bucket, é este aqui. provider "aws" {
region = "us-east-1"
}
resource "aws_s3_bucket" "b" {
bucket = "meubucketcaiofilipee814365-2"
acl = "private"
tags = {
Name = "Mybucket"
Environment = "Dev"
Managedby = "Terraform"
}
} |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Estou tentanto criar um bucket, porém, quando uso o comando (terraform plan) estou recebendo o seguinte erro:
Beta Was this translation helpful? Give feedback.
All reactions