This message was deleted.
# general
b
This message was deleted.
l
Thanks @hallowed-addition-13048. Are you able to provide the HCL code you're using for the resource? I'll then look into reproducing it and seeing if we can get a fix out.
h
what is HCL code, where I find it
You can test with any type cloud SQL for mysql
l
Just the terraform code you use for creating the resource
@hallowed-addition-13048 I’m not able to reproduce this yet. I’ve used the following code:
Copy code
provider "google" {
  credentials = "{\"type\":\"service_account\"}"
  region      = "asia-southeast1"
}

resource "google_sql_database_instance" "sql_server" {
  name             = "master-instance"
  database_version = "MYSQL_8_0"
  settings {
    tier              = "db-custom-16-16384"
    availability_type = "ZONAL"
    disk_size         = 135

    ip_configuration {
      ipv4_enabled    = false
    }
  }
}
And I get the following result which looks correct:
Let me know if you have code that can reproduce this - that will help us track down the issue and fix it simple smile
h
oops! sr my miss take, I missing the region, thanks a lots
l
No worries, glad it’s working now simple smile