Skip to content

Commit

Permalink
fix: revert compliance csv report_type field format (#1057)
Browse files Browse the repository at this point in the history
Signed-off-by: Darren Murray <[email protected]>
  • Loading branch information
dmurray-lacework authored Dec 19, 2022
1 parent 2441d45 commit 123d46b
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion cli/cmd/compliance_aws.go
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@ To show recommendation details and affected resources for a recommendation id:
&complianceCSVReportDetails{
AccountName: report.AccountID,
AccountID: report.AccountID,
ReportType: report.ReportType,
ReportType: reportType.String(),
ReportTime: report.ReportTime,
Recommendations: report.Recommendations,
},
Expand Down
2 changes: 1 addition & 1 deletion cli/cmd/compliance_azure.go
Original file line number Diff line number Diff line change
Expand Up @@ -244,7 +244,7 @@ To show recommendation details and affected resources for a recommendation id:
AccountID: report.SubscriptionID,
TenantName: report.TenantName,
TenantID: report.TenantID,
ReportType: report.ReportType,
ReportType: reportType.String(),
ReportTime: report.ReportTime,
Recommendations: report.Recommendations,
},
Expand Down
2 changes: 1 addition & 1 deletion cli/cmd/compliance_gcp.go
Original file line number Diff line number Diff line change
Expand Up @@ -254,7 +254,7 @@ To show recommendation details and affected resources for a recommendation id:
TenantID: report.OrganizationID,
AccountName: report.ProjectName,
AccountID: report.ProjectID,
ReportType: report.ReportType,
ReportType: reportType.String(),
ReportTime: report.ReportTime,
Recommendations: report.Recommendations,
},
Expand Down

0 comments on commit 123d46b

Please sign in to comment.