From 38b8173a54bf6aadc111e6b880f5625001f03684 Mon Sep 17 00:00:00 2001 From: Vikranth Subramanian Date: Wed, 12 Feb 2025 18:22:32 +1100 Subject: [PATCH] add aws integration to config file --- pkg/models/attack_surface.go | 1 + 1 file changed, 1 insertion(+) diff --git a/pkg/models/attack_surface.go b/pkg/models/attack_surface.go index 19d228d..5098328 100644 --- a/pkg/models/attack_surface.go +++ b/pkg/models/attack_surface.go @@ -4,6 +4,7 @@ type AttackSurface struct { // global only Enable bool `yaml:"enable"` EnableDNSEnumeration bool `yaml:"enable_dns_enumeration"` + EnableAWSIntegration bool `yaml:"enable_aws_integration"` IPAddresses []string `yaml:"ip_addresses,omitempty"` DomainNames []string `yaml:"domain_names,omitempty"` IncludeOnly []AttackSurfaceIncludeOnly `yaml:"include_only,omitempty"`