Add support to a public access to cloudsql-instance (#754)

* feat: add support to a public access to cloudsql-instance

* doc: update cloudsql-instance doc changing the ipv4_enabled parameter description

* test: fix assertion test to ipv4_enabled
This commit is contained in:
Alef Reis
2022-08-09 08:42:42 -03:00
committed by GitHub
parent c9735bcc9f
commit 97104c0098
6 changed files with 37 additions and 2 deletions

View File

@@ -139,3 +139,9 @@ variable "users" {
type = map(string)
default = null
}
variable "ipv4_enabled" {
description = "Add a public IP address to database instance."
type = bool
default = false
}