-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
enhancement(kafka sink): Allow OIDC usage for Kafka (#21103)
* Adding "cmake" and "curl" required for OIDC to work with rdkafka * Revert unneccessary update to rdkafka * Removed cmake-build * Create 21103_kafka_sink_oidc_authentication.enhancement.md * Add oidc to expected spelling * Update license file * Update Cargo.toml --------- Co-authored-by: Jesse Szwedko <[email protected]>
- Loading branch information
Showing
5 changed files
with
23 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -779,6 +779,7 @@ nullishness | |
numbackends | ||
oahd | ||
oap | ||
oidc | ||
OKD | ||
omfwd | ||
omitempty | ||
|
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -160,6 +160,7 @@ crypto-common,https://github.com/RustCrypto/traits,MIT OR Apache-2.0,RustCrypto | |
crypto_secretbox,https://github.com/RustCrypto/nacl-compat/tree/master/crypto_secretbox,Apache-2.0 OR MIT,RustCrypto Developers | ||
csv,https://github.com/BurntSushi/rust-csv,Unlicense OR MIT,Andrew Gallant <[email protected]> | ||
ctr,https://github.com/RustCrypto/block-modes,MIT OR Apache-2.0,RustCrypto Developers | ||
curl-sys,https://github.com/alexcrichton/curl-rust,MIT,Alex Crichton <[email protected]> | ||
curve25519-dalek,https://github.com/dalek-cryptography/curve25519-dalek/tree/main/curve25519-dalek,BSD-3-Clause,"Isis Lovecruft <[email protected]>, Henry de Valence <[email protected]>" | ||
curve25519-dalek-derive,https://github.com/dalek-cryptography/curve25519-dalek,MIT OR Apache-2.0,The curve25519-dalek-derive Authors | ||
darling,https://github.com/TedDriggs/darling,MIT,Ted Driggs <[email protected]> | ||
|
3 changes: 3 additions & 0 deletions
3
changelog.d/21103_kafka_sink_oidc_authentication.enhancement.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
The `kafka` sink now supports OIDC authentication through the exposed `librdkafka_options`. | ||
|
||
authors: zapdos26 |