FloP
FloP
Hello @SarahFrench Something like that: ```tf resource "google_database_migration_service_connection_profile" "cloudsqlprofile_destination" { location = var.region connection_profile_id = var.display_name display_name = var.display_name labels = var.labels cloudsql { cloud_sql_id = google_sql_database_instance.main.id } } ```...
Hello @SarahFrench, That's clear for me. We'll wait for the API change.
Hello @SarahFrench, We manage to do it replacing the `cloudsql` block by a `mysql` or `postgresql` one. ```terraform resource "google_database_migration_service_connection_profile" "cloudsqlprofile_destination" { location = var.region connection_profile_id = var.display_name display_name =...