mirror of
https://github.com/ryboe/private-ip-cloud-sql-db.git
synced 2025-12-19 18:14:59 -05:00
* Upgrade provider plugins to latest release * Improve README instructions * Convert locals in main.tf to vars * Add output for db proxy public IP to make connecting easier * Add plan and crash.log to .gitignore * Move backend config to backend.tf * Move provider config to providers.tf * Move required_versions to versions.tf
8 lines
206 B
HCL
8 lines
206 B
HCL
output "proxy_ip" {
|
|
description = <<-EOT
|
|
The public IP of the instance running Cloud SQL Proxy. psql into this
|
|
instance to connect to your private db.
|
|
EOT
|
|
value = module.dbproxy.public_ip
|
|
}
|