mirror of
https://github.com/dap-ps/infra-dapps.git
synced 2025-02-24 01:48:15 +00:00
18 lines
420 B
HCL
18 lines
420 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 "deploy_access_key" {
|
|
value = "${aws_iam_access_key.deploy.id}"
|
|
}
|
|
|
|
output "deploy_secret_key" {
|
|
value = "${aws_iam_access_key.deploy.encrypted_secret}"
|
|
}
|
|
|
|
/**
|
|
* This can be decrypted with:
|
|
* echo $encrypted_secret | base64 --decode | keybase pgp
|
|
**/
|