s/cannot/should not

This commit is contained in:
Aaron Schlesinger 2020-05-12 15:08:21 -07:00
parent b72165a530
commit f8781d14a8
1 changed files with 1 additions and 1 deletions

View File

@ -1,6 +1,6 @@
# Dapr secrets management
Almost all non-trivial applications need to _securely_ store secret data like API keys, database passwords, and more. By nature, these secrets cannot be checked into the version control system, but they also need to be accessible to code running in production. This is generally a hard problem, but it's critical to get it right. Otherwise, critical production systems can be compromised.
Almost all non-trivial applications need to _securely_ store secret data like API keys, database passwords, and more. By nature, these secrets should not be checked into the version control system, but they also need to be accessible to code running in production. This is generally a hard problem, but it's critical to get it right. Otherwise, critical production systems can be compromised.
Dapr's solution to this problem is the secrets API and secrets stores.