From 5e575512004b3d44627475a173ef6d0b3342383a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Edgar=20Ram=C3=ADrez-Mondrag=C3=B3n?= Date: Tue, 16 Apr 2024 11:50:31 -0600 Subject: [PATCH] fix(templates): Added `sensitive: true` to password settings in templates --- cookiecutter/tap-template/{{cookiecutter.tap_id}}/meltano.yml | 1 + .../target-template/{{cookiecutter.target_id}}/meltano.yml | 1 + 2 files changed, 2 insertions(+) diff --git a/cookiecutter/tap-template/{{cookiecutter.tap_id}}/meltano.yml b/cookiecutter/tap-template/{{cookiecutter.tap_id}}/meltano.yml index e6a1cfba5..c4f2ba480 100644 --- a/cookiecutter/tap-template/{{cookiecutter.tap_id}}/meltano.yml +++ b/cookiecutter/tap-template/{{cookiecutter.tap_id}}/meltano.yml @@ -22,6 +22,7 @@ plugins: - name: username - name: password kind: password + sensitive: true - name: start_date value: '2010-01-01T00:00:00Z' loaders: diff --git a/cookiecutter/target-template/{{cookiecutter.target_id}}/meltano.yml b/cookiecutter/target-template/{{cookiecutter.target_id}}/meltano.yml index da876d4df..c63837370 100644 --- a/cookiecutter/target-template/{{cookiecutter.target_id}}/meltano.yml +++ b/cookiecutter/target-template/{{cookiecutter.target_id}}/meltano.yml @@ -21,5 +21,6 @@ plugins: - name: username - name: password kind: password + sensitive: true - name: start_date value: '2010-01-01T00:00:00Z'