Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[SEC-16683] Decouple Agentless Scanning from CSPM #153

Merged
merged 5 commits into from
Nov 15, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
8 changes: 4 additions & 4 deletions aws_quickstart/datadog_agentless_scanning.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ Parameters:
- true
- false
Description: >-
Enable Agentless Scanning of host vulnerabilities. "CloudSecurityPostureManagement" must be set to 'true'.
Enable Agentless Scanning of host vulnerabilities.
Default: false

AgentlessContainerScanning:
Expand All @@ -31,7 +31,7 @@ Parameters:
- true
- false
Description: >-
Enable Agentless Scanning of container vulnerabilities. "CloudSecurityPostureManagement" must be set to 'true'.
Enable Agentless Scanning of container vulnerabilities.
Default: false

AgentlessLambdaScanning:
Expand All @@ -40,7 +40,7 @@ Parameters:
- true
- false
Description: >-
Enable Agentless Scanning of Lambda vulnerabilities. "CloudSecurityPostureManagement" must be set to 'true'.
Enable Agentless Scanning of Lambda vulnerabilities.
Default: false

AgentlessSensitiveDataScanning:
Expand All @@ -49,7 +49,7 @@ Parameters:
- true
- false
Description: >-
Enable Agentless Scanning of datastores (S3 buckets). "CloudSecurityPostureManagement" must be set to 'true'.
Enable Agentless Scanning of datastores (S3 buckets).
Default: false

DatadogAPIKeySecretArn:
Expand Down
11 changes: 4 additions & 7 deletions aws_quickstart/main_extended.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -92,31 +92,31 @@ Parameters:
- true
- false
Description: >-
Enable Agentless Scanning of host vulnerabilities. "CloudSecurityPostureManagement" must be set to 'true'.
Enable Agentless Scanning of host vulnerabilities.
Default: false
AgentlessContainerScanning:
Type: String
AllowedValues:
- true
- false
Description: >-
Enable Agentless Scanning of container vulnerabilities. "CloudSecurityPostureManagement" must be set to 'true'.
Enable Agentless Scanning of container vulnerabilities.
Default: false
AgentlessLambdaScanning:
Type: String
AllowedValues:
- true
- false
Description: >-
Enable Agentless Scanning of Lambda vulnerabilities. "CloudSecurityPostureManagement" must be set to 'true'.
Enable Agentless Scanning of Lambda vulnerabilities.
Default: false
AgentlessSensitiveDataScanning:
Type: String
AllowedValues:
- true
- false
Description: >-
Enable Agentless Scanning of datastores (S3 buckets). "CloudSecurityPostureManagement" must be set to 'true'.
Enable Agentless Scanning of datastores (S3 buckets).
Default: false
Rules:
ResourceCollectionValidState:
Expand Down Expand Up @@ -146,9 +146,6 @@ Conditions:
- Fn::Equals:
- !Ref DatadogSite
- ddog-gov.com
- Fn::Equals:
- !Ref CloudSecurityPostureManagement
- true
- Fn::Or:
- Fn::Equals:
- !Ref AgentlessHostScanning
Expand Down
Loading