File tree Expand file tree Collapse file tree 1 file changed +23
-0
lines changed
nixos/modules/services/monitoring/prometheus Expand file tree Collapse file tree 1 file changed +23
-0
lines changed Original file line number Diff line number Diff line change 201201 } ;
202202 } ;
203203
204+ promTypes . sigv4 = types . submodule {
205+ options = {
206+ region = mkOpt types . str ''
207+ The AWS region.
208+ '' ;
209+ access_key = mkOpt types . str ''
210+ The Access Key ID.
211+ '' ;
212+ secret_key = mkOpt types . str ''
213+ The Secret Access Key.
214+ '' ;
215+ profile = mkOpt types . str ''
216+ The named AWS profile used to authenticate.
217+ '' ;
218+ role_arn = mkOpt types . str ''
219+ The AWS role ARN.
220+ '' ;
221+ } ;
222+ } ;
223+
204224 promTypes . tls_config = types . submodule {
205225 options = {
206226 ca_file = mkOpt types . str ''
@@ -1464,6 +1484,9 @@ let
14641484 Sets the `Authorization` header on every remote write request with the bearer token
14651485 read from the configured file. It is mutually exclusive with `bearer_token`.
14661486 '' ;
1487+ sigv4 = mkOpt promTypes . sigv4 ''
1488+ Configures AWS Signature Version 4 settings.
1489+ '' ;
14671490 tls_config = mkOpt promTypes . tls_config ''
14681491 Configures the remote write request's TLS settings.
14691492 '' ;
You can’t perform that action at this time.
0 commit comments