You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: data-prepper-plugins/otlp-source/README.md
+28Lines changed: 28 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -60,6 +60,34 @@ source:
60
60
max_delay: 5s # defaults to 2s
61
61
```
62
62
63
+
### Authentication Configurations
64
+
65
+
By default, the otlp input is unauthenticated.
66
+
67
+
The following is an example of how to run the server with HTTP Basic authentication:
68
+
69
+
```yaml
70
+
source:
71
+
otlp:
72
+
authentication:
73
+
http_basic:
74
+
username: my-user
75
+
password: my_s3cr3t
76
+
```
77
+
78
+
You can also explicitly disable authentication with:
79
+
80
+
```yaml
81
+
source:
82
+
otlp:
83
+
authentication:
84
+
unauthenticated:
85
+
```
86
+
87
+
This plugin uses pluggable authentication for GRPC servers. To provide custom authentication,
88
+
create a plugin which implements [`GrpcAuthenticationProvider`](../armeria-common/src/main/java/org/opensearch/dataprepper/armeria/authentication/GrpcAuthenticationProvider.java)
89
+
90
+
63
91
### SSL
64
92
65
93
- ssl(Optional) => A boolean enables TLS/SSL. Default is `true`.
0 commit comments