mirror of
https://github.com/dap-ps/infra-dapps.git
synced 2025-02-24 18:08:28 +00:00
11 lines
316 B
HCL
11 lines
316 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}"
|
|
}
|
|
*/
|