terraforming icon indicating copy to clipboard operation
terraforming copied to clipboard

s3 does not return default encryption rule or tags for bucket

Open wsanders opened this issue 6 years ago • 0 comments

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

wsanders avatar Aug 03 '18 21:08 wsanders