Skip to content

Commit b039cb6

Browse files
committed
Fix typo
1 parent 55ece83 commit b039cb6

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

content/articles/20260313-blog-server-hacking-part-three.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ Mismanaging secrets has always been terrible, but with the rise of malwares, and
5050
There's usually two types of configuration: unsensitive data (identifiers, usernames, URLs without auth) and secrets, such as passwords, private keys (for asymetric algorithms), or tokens. We're interested in the latter here.
5151

5252
Some secrets are long or short lived. Things like OAuth2 tokens, valid for a relatively short period of time, are usually stored in application state, cache or databases, and refreshed often.
53-
Long-lived secrets usually do not receive that much attention though, especially when you start building a service. You just put things into variable environments (either directly or through your PaaS abstraction, like `fly secrets`), and it stays there for 5 years before seeing its first-ever renewal.
53+
Long-lived secrets usually do not receive that much attention though, especially when you start building a service. You just put things into environment variables (either directly or through your PaaS abstraction, like `fly secrets`), and it stays there for 5 years before seeing its first-ever renewal.
5454

5555
Let's say we need to have a couple of secret keys to deploy our app, and we want to generate a Kubernetes secret that our app will have access to.
5656
We could:

0 commit comments

Comments
 (0)