ashb commented on code in PR #67940:
URL: https://github.com/apache/airflow/pull/67940#discussion_r3420443697
##########
airflow-core/docs/security/secrets/secrets-backend/local-filesystem-secrets-backend.rst:
##########
@@ -143,3 +144,37 @@ describe the variable value. The following is a sample
file.
VAR_A=some_value
var_B=different_value
+
+Storing and Retrieving Configurations
+"""""""""""""""""""""""""""""""""""""
+
+If you have set ``configs_file_path`` as ``/files/my_config.json``, then the
backend will read the
+file ``/files/my_config.json`` when it retrieves config options that are
specified with appended ``_secret``.
+
+The file can be defined in ``JSON``, ``YAML`` or ``env`` format.
+
+The JSON file must contain an object where the key contains config option
``_secret`` version value and the value
+contains config option value. The following is a sample JSON file.
+
+ .. code-block:: json
+
+ {
+ "value_specified_in_database_sql_alchemy_conn_secret":
"sql_alchemy_conn_value",
Review Comment:
This example would be clearer by showing what to put in the config settings
to make it look at this
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]