From 48603a950fe6e8e2bb2e3667328aca5cbc96d507 Mon Sep 17 00:00:00 2001 From: Tomas Morton Date: Tue, 30 Jul 2024 19:56:49 +0000 Subject: [PATCH] Add shortname option for kms-key-name to firestore:databases:create --- src/commands/firestore-databases-create.ts | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) 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)