daemon/logger/awslogs: suppress false positive on hardcoded creds (gosec)
daemon/logger/awslogs/cloudwatchlogs.go:42:2: G101: Potential hardcoded credentials (gosec)
credentialsEndpointKey = "awslogs-credentials-endpoint"
^
daemon/logger/awslogs/cloudwatchlogs.go:67:2: G101: Potential hardcoded credentials (gosec)
credentialsEndpoint = "http://169.254.170.2"
^
Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
(cherry picked from commit b88f4e2604
)
Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
This commit is contained in:
parent
adeb29c64c
commit
0523323c28
1 changed files with 2 additions and 2 deletions
|
@ -38,7 +38,7 @@ const (
|
|||
tagKey = "tag"
|
||||
datetimeFormatKey = "awslogs-datetime-format"
|
||||
multilinePatternKey = "awslogs-multiline-pattern"
|
||||
credentialsEndpointKey = "awslogs-credentials-endpoint"
|
||||
credentialsEndpointKey = "awslogs-credentials-endpoint" //nolint:gosec // G101: Potential hardcoded credentials
|
||||
forceFlushIntervalKey = "awslogs-force-flush-interval-seconds"
|
||||
maxBufferedEventsKey = "awslogs-max-buffered-events"
|
||||
|
||||
|
@ -62,7 +62,7 @@ const (
|
|||
invalidSequenceTokenCode = "InvalidSequenceTokenException"
|
||||
resourceNotFoundCode = "ResourceNotFoundException"
|
||||
|
||||
credentialsEndpoint = "http://169.254.170.2"
|
||||
credentialsEndpoint = "http://169.254.170.2" //nolint:gosec // G101: Potential hardcoded credentials
|
||||
|
||||
userAgentHeader = "User-Agent"
|
||||
)
|
||||
|
|
Loading…
Reference in a new issue