From b17f698b3547636234663c6b125f2f225c4f997d 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 | 15 +++++++++++++++ 1 file changed, 15 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..c7dd8d074 --- /dev/null +++ b/news/feature-412.md @@ -0,0 +1,15 @@ +grpc: Added service account option for grpc destinations. + +Example usage: +``` +destination { + google-pubsub-grpc( + project("test") + topic("test") + auth(service-account(key ("path_to_service_account_key.json"))) + ); +}; +``` + +Note: It seems like gRPC sets the audience and scope options +based on the gRPC service name.