Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions x-pack/filebeat/input/azureeventhub/v1_input.go
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,15 @@ func (in *eventHubInputV1) Name() string {
return inputName
}

// IsFIPSCapable returns false because the azure-eventhub input indirectly does
// not use FIPS-compliant algorithms. Specifically, the input depends on
// the github.com/Azure/azure-sdk-for-go/sdk/azidentity package which, in
// turn, depends on the golang.org/x/crypto/pkcs12 package, which is not
// FIPS-compliant
func (in *eventHubInputV1) IsFIPSCapable() bool {
return false
}

func (in *eventHubInputV1) Test(v2.TestContext) error {
return nil
}
Expand Down
9 changes: 9 additions & 0 deletions x-pack/filebeat/input/azureeventhub/v2_input.go
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,15 @@ func (in *eventHubInputV2) Name() string {
return inputName
}

// IsFIPSCapable returns false because the azure-eventhub input indirectly does
// not use FIPS-compliant algorithms. Specifically, the input depends on
// the github.com/Azure/azure-sdk-for-go/sdk/azidentity package which, in
// turn, depends on the golang.org/x/crypto/pkcs12 package, which is not
// FIPS-compliant
func (in *eventHubInputV2) IsFIPSCapable() bool {
return false
}

func (in *eventHubInputV2) Test(v2.TestContext) error {
return nil
}
Expand Down
2 changes: 2 additions & 0 deletions x-pack/filebeat/module/azure/_meta/docs.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@

== Azure module

WARNING: This module is not available in FIPS-capable Filebeat.

include::{libbeat-dir}/shared/integration-link.asciidoc[]

The azure module retrieves different types of log data from Azure.
Expand Down
Loading