Terraform AWS Provider support
Support and limitations for the Terraform AWS provider.
Example of Terraform AWS Provider support
resource "aws_s3_bucket" "example" {
# ... other configuration ...
acl = "public-read-write"
}resource "aws_s3_bucket" "example" {
# ... other configuration ...
}
resource "aws_s3_bucket_acl" "example" {
bucket = aws_s3_bucket.example.id
acl = "public-read-write"
}Limitations of support for Terraform AWS Provider
Last updated
Was this helpful?

