1
0
mirror of synced 2025-12-30 12:00:17 -05:00
Files
terraform-google-sql/examples/cloud-sql-mysql/outputs.tf
2019-02-05 19:28:08 +02:00

30 lines
667 B
HCL

output "instance_name" {
description = "The name of the database instance"
value = "${module.mysql.instance_name}"
}
output "public_ip" {
description = "The IPv4 address of the master database instance"
value = "${module.mysql.public_ip}"
}
output "instance" {
description = "Self link to the master instance"
value = "${module.mysql.instance}"
}
output "db_name" {
description = "Name of the default database"
value = "${module.mysql.db_name}"
}
output "proxy_connection" {
value = "${module.mysql.proxy_connection}"
}
output "db" {
description = "Self link to the default database"
value = "${module.mysql.db}"
}