From 372fc340163be8c8da703aacf1029b72c917377d Mon Sep 17 00:00:00 2001 From: "Aaron (\"AJ\") Steers" Date: Fri, 21 Oct 2022 15:53:59 -0700 Subject: [PATCH] docs: add info to FAQ --- docs/faq.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/docs/faq.md b/docs/faq.md index e0b18c5e0..953cef072 100644 --- a/docs/faq.md +++ b/docs/faq.md @@ -11,7 +11,11 @@ However, if you're using an IDE such as VSCode, you should be able to set up the Ensure your interpreter is set to poetry if you've followed the [Dev Guide](./dev_guide.md). Checkout this [gif](https://visualstudiomagazine.com/articles/2021/04/20/~/media/ECG/visualstudiomagazine/Images/2021/04/poetry.ashx) for how to change your interpreter. -## I'm having trouble getting the base class to __init__. +### Handling credentials and other secrets in config + +As of SDK version `0.13.0`, developers can use the `secret=True` indication in the `Property` class constructor to flag secrets such as API tokens and passwords. We recommend all developers use this option where applicable so that orchestrators may consider this designation when determining how to store the user's provided config. + +## I'm having trouble getting the base class to **init**. Ensure you're using the `super()` method to inherit methods from the base class.