diff --git a/src/commands/firestore-databases-create.ts b/src/commands/firestore-databases-create.ts index e5fee90827d..2967384f04b 100644 --- a/src/commands/firestore-databases-create.ts +++ b/src/commands/firestore-databases-create.ts @@ -27,8 +27,10 @@ export const command = new Command("firestore:databases:create ") ) // TODO(b/356137854): Remove allowlist only message once feature is public GA. .option( - "--kms-key-name ", - "The resource ID of a Cloud KMS key. If set, the database created will be a Customer-managed Encryption Key (CMEK) database encrypted with this key. This feature is allowlist only in initial launch.", + "-k, --kms-key-name ", + "The resource ID of a Cloud KMS key. If set, the database created will be a " + + "Customer-managed Encryption Key (CMEK) database encrypted with this key. " + + "This feature is allowlist only in initial launch.", ) .before(requirePermissions, ["datastore.databases.create"]) .before(warnEmulatorNotSupported, Emulators.FIRESTORE)