Jakub Sokołowski c895c1a4a6
fix aws-s3-bucket module
Signed-off-by: Jakub Sokołowski <jakub@status.im>
2019-07-31 15:30:01 -04:00

22 lines
456 B
HCL

/**
* Uncomment this if you want to extract the secret again.
* For details see: https://www.terraform.io/docs/providers/aws/r/iam_access_key.html
**/
output "s3_access_key" {
value = aws_iam_access_key.main.id
}
output "s3_secret_key" {
value = aws_iam_access_key.main.encrypted_secret
}
output "bucket_arn" {
value = aws_s3_bucket.main.arn
}
/**
* This can be decrypted with:
* echo $encrypted_secret | base64 --decode | keybase pgp
**/