Hi team & <@U06D0USC2CQ> I am trying to configurin...
# troubleshooting
a
Hi team & @Reuben (Matatika) I am trying to configuring client ID for tap-rest-api-msdk, but once set, meltano.yml is no update with cliendID and its value meltano config tap-rest-api-msdk set client_secret 1000.V4WO4BXN8ODEDDGB65NS1897FL7CPZ 2024-03-26T103235.925258Z [info ] The default environment 'dev' will be ignored for
meltano config
. To configure a specific environment, please use the option
--environment=<environment name>
. 2024-03-26T103235.967194Z [warning ]
kind: password
is deprecated for setting definitions in favour of
sensitive: true
, and is currently in use by the following settings of extractor 'tap-rest-api-msdk': 'access_token_url', 'bearer_token', 'client_id', 'client_secret', 'next_page_token_path', 'password', 'refresh_token', 'replication_key'. Please open an issue or pull request to update the plugin definition on Meltano Hub at https://github.com/meltano/hub/blob/main/_data/meltano/extractors/tap-rest-api-msdk/widen.yml. Extractor 'tap-rest-api-msdk' setting 'client_secret' was set in `.env`: (redacted) Can you please help on this, I will passing required authentication and expecting to see configuration set in meltano.yml file
r
Copy code
Extractor 'tap-rest-api-msdk' setting 'client_secret' was set in `.env`: (redacted)
This happens because the settings is defined as
password
type, so by design it will not add to the
meltano.yml
. You can set it in there manually if you want, but be careful not to commit the changes to source control.
1
It goes without saying that Meltano will still pick up configuration from the
.env
.
👍 1