feat: Upgrade to terraform 0.15 (#3)

* 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
This commit is contained in:
Ryan Boehning
2021-06-06 13:33:00 -07:00
committed by GitHub
parent 70c7fff926
commit f4e906ee0c
11 changed files with 122 additions and 94 deletions

View File

@@ -0,0 +1,4 @@
output "public_ip" {
description = "The public IP of the bastion instance running Cloud SQL Proxy"
value = google_compute_instance.db_proxy.network_interface.0.access_config.0.nat_ip
}