15 lines
278 B
Terraform
15 lines
278 B
Terraform
output "mysql-host" {
|
|
value = module.db.db_instance_endpoint
|
|
}
|
|
|
|
output "mysql-admin-cred" {
|
|
value = module.db.db_instance_master_user_secret_arn
|
|
}
|
|
|
|
output "bastion-ip" {
|
|
value = module.bastion.public-ip
|
|
}
|
|
|
|
output "dbproxy-endpoint" {
|
|
value = aws_db_proxy.this.endpoint
|
|
} |