Skip to content

Commit efc4434

Browse files
committed
replace MY-DATABASE with INSTANCE-NAME
1 parent 043c9b8 commit efc4434

File tree

4 files changed

+3
-4
lines changed

4 files changed

+3
-4
lines changed

cloud_sql/postgres/pdo/README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,4 +50,3 @@ Next, the following command will deploy the application to your Google Cloud pro
5050
```bash
5151
$ gcloud app deploy
5252
```
53-

cloud_sql/postgres/pdo/app.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,4 +26,4 @@ env_variables:
2626
# serve a custom PHP front controller (e.g. "serve backend/index.php") or to
2727
# run a long-running PHP script as a worker process (e.g. "php worker.php").
2828
#
29-
# entrypoint: serve index.php
29+
# entrypoint: serve index.php

cloud_sql/sqlserver/pdo/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ export GOOGLE_APPLICATION_CREDENTIALS=/path/to/service/account/key.json
2121
To run the Cloud SQL proxy, you need to set the instance connection name. See the instructions [here](https://cloud.google.com/sql/docs/sqlserver/quickstart-proxy-test#get_the_instance_connection_name) for finding the instance connection name.
2222

2323
```bash
24-
export CLOUD_SQL_CONNECTION_NAME='::<MY-DATABASE>'
24+
export CLOUD_SQL_CONNECTION_NAME='::<INSTANCE-NAME>'
2525
```
2626

2727
Once the proxy is ready, use one of the following commands to start the proxy in the background.

cloud_sql/sqlserver/pdo/app.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ beta_settings:
2828
# The connection name of your instance, available by using
2929
# 'gcloud beta sql instances describe [INSTANCE_NAME]' or from
3030
# the Instance details page in the Google Cloud Platform Console.
31-
cloud_sql_instances: ::<MY-DATABASE>=tcp:1433
31+
cloud_sql_instances: ::<INSTANCE_NAME>=tcp:1433
3232

3333
# Defaults to "serve index.php" and "serve public/index.php". Can be used to
3434
# serve a custom PHP front controller (e.g. "serve backend/index.php") or to

0 commit comments

Comments
 (0)