github.com/aquasecurity/trivy-iac@v0.8.1-0.20240127024015-3d8e412cf0ab/internal/adapters/cloudformation/aws/neptune/neptune.go (about) 1 package neptune 2 3 import ( 4 "github.com/aquasecurity/defsec/pkg/providers/aws/neptune" 5 "github.com/aquasecurity/trivy-iac/pkg/scanners/cloudformation/parser" 6 ) 7 8 // Adapt ... 9 func Adapt(cfFile parser.FileContext) neptune.Neptune { 10 return neptune.Neptune{ 11 Clusters: getClusters(cfFile), 12 } 13 }