Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions src/commands/firestore-databases-create.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,10 @@ export const command = new Command("firestore:databases:create <database>")
)
// TODO(b/356137854): Remove allowlist only message once feature is public GA.
.option(
"--kms-key-name <kmsKeyName>",
"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 <kmsKeyName>",
"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)
Expand Down