From 9734e52b448bcd3ffc60143a5fa6bac881f4781c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tam=C3=A1s=20Kosztyu?= Date: Sat, 7 Dec 2024 11:29:11 +0100 Subject: [PATCH] NEWS: Add entry for #412 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Tamás Kosztyu --- news/feature-412.md | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 news/feature-412.md diff --git a/news/feature-412.md b/news/feature-412.md new file mode 100644 index 000000000..573cb1489 --- /dev/null +++ b/news/feature-412.md @@ -0,0 +1,16 @@ +bigquery(), google-pubsub-grpc(): Added service-account() authentication option. + +Example usage: +``` +destination { + google-pubsub-grpc( + project("test") + topic("test") + auth(service-account(key ("path_to_service_account_key.json"))) + ); +}; +``` + +Note: In contrary to the `http()` destination's similar option, +we do not need to manually set the audience here as it is +automatically recognized by the underlying gRPC API.