Complete the code to enable encryption at rest in MongoDB configuration.
security:
enableEncryption: [1]Setting enableEncryption to true activates encryption at rest in MongoDB.
Complete the code to specify the encryption key file path in MongoDB configuration.
security:
encryptionKeyFile: [1]The encryptionKeyFile option requires the path to the key file used for encryption at rest.
Fix the error in the MongoDB configuration to properly enable encryption at rest.
security:
enableEncryption: [1]MongoDB configuration requires lowercase true to enable boolean options correctly.
Fill both blanks to configure encryption at rest with the key file and enable it.
security: enableEncryption: [1] encryptionKeyFile: [2]
Encryption is enabled by setting enableEncryption to true and specifying the correct encryptionKeyFile path.
Fill all three blanks to create a MongoDB configuration snippet that enables encryption at rest, specifies the key file, and sets the storage engine.
security: enableEncryption: [1] encryptionKeyFile: [2] storage: engine: [3]
Encryption at rest is enabled with true, the key file path is specified, and the storage engine is set to wiredTiger, which supports encryption.