Details
-
Improvement
-
Status: Closed
-
Minor - P4
-
Resolution: Done
-
None
-
None
-
None
-
2
-
DET: Cybertruck - Sprint 2, DET: Sienna - Sprint 3
-
(copied to CRM)
Description
In the following article it was found that some users fail to correctly substitute values in the code sample templates. For example:
// We have
|
providerDetails.put("privateKey", new BsonString("<GCP service account private key>")); |
// User used
|
providerDetails.put("privateKey", new BsonString("<GCP $privateKey>")); |
// Instead of
|
providerDetails.put("privateKey", new BsonString("$privateKey")); |
Can we consider make it more clear what sort of substitution is needed?