You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -95,7 +95,7 @@ export async function provisionCloudSql(args: {
95
95
silent||
96
96
utils.logLabeledBullet(
97
97
"dataconnect",
98
-
"Cloud SQL instance creation started - it should be ready shortly. Database and users will be created on your next deploy.",
98
+
"Cloud SQL instance creation started. While it is being set up, your data will be saved in a temporary database. When it is ready, your data will be migrated.",
99
99
);
100
100
returnconnectionName;
101
101
}
@@ -111,17 +111,11 @@ export async function provisionCloudSql(args: {
111
111
silent||
112
112
utils.logLabeledBullet(
113
113
"dataconnect",
114
-
`Database${databaseId} not found. It will be created on your next deploy.`,
114
+
`Postgres database${databaseId} not found. It will be created on your next deploy.`,
115
115
);
116
116
}else{
117
-
// Create the database if not found.
118
-
silent||
119
-
utils.logLabeledBullet(
120
-
"dataconnect",
121
-
`Database ${databaseId} not found, creating it now...`,
@@ -171,11 +165,3 @@ export function getUpdateReason(instance: Instance, requireGoogleMlIntegration:
171
165
172
166
returnreason;
173
167
}
174
-
175
-
functioncmekWarning(){
176
-
constmessage=
177
-
"Cloud SQL instances created via the Firebase CLI do not support customer managed encryption keys.\n"+
178
-
"If you'd like to use a CMEK to encrypt your data, first create a CMEK encrypted instance (https://cloud.google.com/sql/docs/postgres/configure-cmek#createcmekinstance).\n"+
179
-
"Then, edit your `dataconnect.yaml` file to use the encrypted instance and redeploy.";
0 commit comments