mirror of
https://github.com/dap-ps/infra-dapps.git
synced 2025-02-23 09:28:09 +00:00
38 lines
770 B
HCL
38 lines
770 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
|
|
**/
|
|
|
|
output "elb_names" {
|
|
value = module.eb_environment.load_balancers
|
|
}
|
|
|
|
output "elb_fqdns" {
|
|
value = [for elb in data.aws_elb.main: elb.dns_name]
|
|
}
|
|
|
|
output "vpc_id" {
|
|
value = module.vpc.vpc_id
|
|
}
|
|
|
|
output "subnet_ids" {
|
|
value = module.subnets.public_subnet_ids
|
|
}
|
|
|
|
output "security_group_id" {
|
|
value = module.vpc.vpc_default_security_group_id
|
|
}
|