dtan4 / terraforming

Export existing AWS resources to Terraform style (tf, tfstate) / No longer actively maintained
http://terraforming.dtan4.net/
MIT License
4.3k stars 658 forks source link

s3 does not return default encryption rule or tags for bucket #421

Open wsanders opened 6 years ago

wsanders commented 6 years ago

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