1
0
mirror of synced 2025-12-25 02:09:19 -05:00

Destination RabbitMQ: Make password marked as airbyte_secret (#16528)

* Destination RabbitMQ make password as airbyte_secret

* update changelog

* auto-bump connector version [ci skip]

Co-authored-by: Octavia Squidington III <octavia-squidington-iii@users.noreply.github.com>
This commit is contained in:
Yurii Bidiuk
2022-09-09 13:54:27 +03:00
committed by GitHub
parent c8d43dcef5
commit 8c56eeb02f
5 changed files with 9 additions and 4 deletions

View File

@@ -217,7 +217,7 @@
- name: RabbitMQ
destinationDefinitionId: e06ad785-ad6f-4647-b2e8-3027a5c59454
dockerRepository: airbyte/destination-rabbitmq
dockerImageTag: 0.1.0
dockerImageTag: 0.1.1
documentationUrl: https://docs.airbyte.io/integrations/destinations/rabbitmq
icon: pulsar.svg
releaseStage: alpha

View File

@@ -3775,7 +3775,7 @@
supportsDBT: false
supported_destination_sync_modes:
- "append"
- dockerImage: "airbyte/destination-rabbitmq:0.1.0"
- dockerImage: "airbyte/destination-rabbitmq:0.1.1"
spec:
documentationUrl: "https://docs.airbyte.io/integrations/destinations/rabbitmq"
connectionSpecification:
@@ -3805,7 +3805,9 @@
description: "The username to connect."
password:
type: "string"
title: "Password"
description: "The password to connect."
airbyte_secret: true
exchange:
type: "string"
description: "The exchange name."

View File

@@ -34,5 +34,5 @@ COPY destination_rabbitmq ./destination_rabbitmq
ENV AIRBYTE_ENTRYPOINT "python /airbyte/integration_code/main.py"
ENTRYPOINT ["python", "/airbyte/integration_code/main.py"]
LABEL io.airbyte.version=0.1.0
LABEL io.airbyte.version=0.1.1
LABEL io.airbyte.name=airbyte/destination-rabbitmq

View File

@@ -34,7 +34,9 @@
},
"password": {
"type": "string",
"description": "The password to connect."
"title": "Password",
"description": "The password to connect.",
"airbyte_secret": true
},
"exchange": {
"type": "string",

View File

@@ -43,5 +43,6 @@ To use the RabbitMQ destination, you'll need:
| Version | Date | Pull Request | Subject |
| :--- | :--- | :--- | :--- |
| 0.1.1 | 2022-09-09 | [16528](https://github.com/airbytehq/airbyte/pull/16528) | Marked password field in spec as airbyte_secret |
| 0.1.0 | October 29, 2021 | [\#7560](https://github.com/airbytehq/airbyte/pull/7560) | Initial release |