terraforming
terraforming copied to clipboard
s3 does not return default encryption rule or tags for bucket
I has a bucket, it is encrypted with RSA256 default encryption and some tags. "terraform s3" does not return the default encryption rule and tags set for the bucket. Expecting: Additional clauses like
server_side_encryption_configuration {
rule {
apply_server_side_encryption_by_default {
sse_algorithm = "AES256"
}
}
}
tags {
Team = "foo"
Project = "bar"
Terraformed = "True"
}
etc