How would I connect to Google Cloud SQL Proxy from my Windows Arm64 architecture?
In the Ubuntu 22 LTS terminal, from my prior computer, I used to connect just fine to my Google Cloud instance with:
./cloud_sql_proxy -instances="project-name:us-central5:project-db"=tcp:5432
But After upgrading to the Windows Surface 11 with Arm64 CPU, that command gives me this error: -bash: ./cloud_sql_proxy: cannot execute binary file: Exec format error
I tried removing the old cloud-sql-proxy installation, and installing the arm64 version (below) but that didn’t change anything. (according to the docs)
rm cloud-sql-proxy
curl "$URL/cloud-sql-proxy.linux.arm64" -o cloud-sql-proxy
chmod +x cloud-sql-proxy
How can I connect to my google cloud instance with this ARM64 architecture?