1
0
mirror of https://github.com/aquasecurity/kube-bench.git synced 2025-07-08 15:48:18 +00:00
kube-bench/fipsonly.go
Devendra Turkar 22b5df3f5a chore: add fips compliant images (#1473)
For fips complaince we need to generate fips compliant images.
As part of this change, we will create new kube-bench image which will be fips compliant. Image name follows this tag pattern <version>-ubi-fips
2023-11-02 16:07:20 +05:30

8 lines
71 B
Go

//go:build fipsonly
package main
import (
_ "crypto/tls/fipsonly"
)