Feature flags for the portal can be ordinary configuration, but third-party API tokens must not sit in plaintext parameters. How should Parameter Store / Secrets Manager usage be matched to sensitivity?
Select an answer to reveal the explanation.
Short Explanation
Feature flags are sticky notes; API tokens are the safe combination. Plaintext parameters are fine for the notes — tokens get SecureString or Secrets Manager.
Full Explanation
Match storage strength to sensitivity: non-sensitive configuration may use standard Parameter Store String parameters, while API tokens require SecureString or Secrets Manager. Inverting that mapping, publishing both to public S3, or forcing tokens into plaintext env vars for latency reasons violates least-privilege secret handling.