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

@@ -34,4 +34,5 @@ module "test" {
users = var.users
tier = var.tier
deletion_protection = var.deletion_protection
ipv4_enabled = var.ipv4_enabled
}

View File

@@ -112,3 +112,8 @@ variable "deletion_protection" {
type = bool
default = false
}
variable "ipv4_enabled" {
type = bool
default = false
}