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
Copy file name to clipboardExpand all lines: cli/unipipe/blueprints/unipipe-osb-aci.tf.js
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -57,4 +57,4 @@ output "unipipe_git_ssh_key" {
57
57
output "info" {
58
58
value = "UniPipe OSB is starting now. This may take a couple of minutes on Azure ACI. You can use Azure Portal to view logs of the container starting up and debug any issues. Also note that for newly deployed domains Azure ACI can take a few minutes to provide DNS."
message: "Add credential `key:value` pairs. Use comma `,` to separate credentials. If you don't want to update, leave it blank.",
219
-
}
229
+
message:
230
+
"Add credential `key:value` pairs. Use comma `,` to separate credentials. If you don't want to update, leave it blank.",
231
+
},
220
232
);
221
233
222
234
// cliffy does not support whitespace in list prompt input.
@@ -225,12 +237,15 @@ async function updateBinding(
225
237
credentials.forEach((credential)=>{
226
238
constcolonIndex=credential.indexOf(":");
227
239
if(colonIndex===-1){
228
-
thrownewError("Could not find colon `:` in credential `key:value` pair: "+credential);
240
+
thrownewError(
241
+
"Could not find colon `:` in credential `key:value` pair: "+
242
+
credential,
243
+
);
229
244
}
230
245
constkey=credential.substring(0,colonIndex);
231
246
constvalue=credential.substring(colonIndex+1);
232
247
fixedCredentials.push(key+": "+value);
233
-
})
248
+
});
234
249
235
250
awaitupdate(repo,{
236
251
instanceId,
@@ -241,18 +256,20 @@ async function updateBinding(
241
256
});
242
257
243
258
console.log(
244
-
`Updated status of instance ${instanceId} binding ${bindingId} to '${status}' and credentials are '${fixedCredentials.length>0 ? 'overwritten' : 'not updated'}'`
259
+
`Updated status of instance ${instanceId} binding ${bindingId} to '${status}' and credentials are '${
0 commit comments