What are the primary benefits of running Vault in a production deployment over dev server mode (select two)?
Faster deployment
Persistent storage
Ability to enable auth methods
Encryption via TLS
Comprehensive and Detailed in Depth Explanation:
A:Dev mode is faster to deploy; incorrect.
B:Production uses persistent storage vs. dev’s in-memory. Correct.
C:Auth methods work in both modes. Incorrect.
D:Production enables TLS; dev uses plaintext. Correct.
Overall Explanation from Vault Docs:
“Dev server mode stores data in memory… Production mode supports persistent storage and TLS encryption.”
Submit