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