mirror of
https://github.com/dap-ps/infra-dapps.git
synced 2025-02-23 17:38:13 +00:00
22 lines
456 B
HCL
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
|
|
**/
|