resource "google_service_account" "sql_client" { account_id = "sql-client" display_name = "sql-client" } # fails resource "google_project_iam_member" "sql_client" { role = "roles/cloudsql.client" member = "serviceAccount:${google_service_account.sql_client.email}" # these roles have...
This includes creating a Google Project, which will be required to create a cluster within your project. ++ +NOTE: When you create your project, make sure you also enable API access. If you do not enable API access, the command we will run next (to create your cluster) will fail. +...