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

SUP-1730 Change Wiz import type default to ISSUES #563

Merged
merged 2 commits into from
Nov 7, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
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
2 changes: 1 addition & 1 deletion Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ GEM
netrc (~> 0.8)
reverse_markdown (2.1.1)
nokogiri
rexml (3.3.8)
rexml (3.3.9)
rspec (3.12.0)
rspec-core (~> 3.12.0)
rspec-expectations (~> 3.12.0)
Expand Down
2 changes: 1 addition & 1 deletion tasks/connectors/wiz/readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ Complete list of Options:
| vuln_object_types | false | Array of object types for VULNS import. Allowed values: VIRTUAL_MACHINE,CONTAINER_IMAGE,SERVERLESS. Import all if not present. | n/a |
| severity | false | Array of severity types for VULNS and ISSUES (ALL) import. Allowed values: CRITICAL,HIGH,MEDIUM,LOW,INFO. Import all if not present. | n/a |
| issue_status | false | Array of issue status for ISSUES import. Allowed values: OPEN,IN_PROGRESS,RESOLVED,REJECTED. Import all if not present. | n/a |
| import_type | false | What to import, ISSUES, VULNS or ALL | ALL |
| import_type | false | What to import, ISSUES, VULNS or ALL | ISSUES |
| issues_external_id_attr | false | For ISSUES, the entitySnapshot attribute used to map Kenna asset's external_id, for instance, `providerId` or `resourceGroupExternalId`. If not present or the value for the passed attribute is not present the provideId attribute value is used. | n/a |
| vulns_external_id_attr | false | For VULNS, the `vulnerableEntity` attribute used to map Kenna asset's external_id, for instance, `id`, `providerUniqueId` or `name`. If not present or the value for the passed attribute is not present the `id` attribute value is used. | n/a |
| issues_hostname_attr | false | For ISSUES, the entitySnapshot attribute used to map Kenna asset's hostname, for instance, `name`, `subscriptionId`, `subscriptionExternalId`, `subscriptionName`, `resourceGroupId`, `resourceGroupExternalId`, `providerId`. If not present or the value for the passed attribute is not present the `name` attribute value is used. | n/a |
Expand Down
2 changes: 1 addition & 1 deletion tasks/connectors/wiz/wiz_task.rb
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ def self.metadata
{ name: "import_type",
type: "string",
required: false,
default: "ALL",
default: "ISSUES",
description: "What to import, ISSUES, VULNS or ALL" },
{ name: "issues_external_id_attr",
type: "string",
Expand Down
Loading