Skip to content

Commit

Permalink
feat(GROW-2928): Add an output to capture Lacework integration GUID (#80
Browse files Browse the repository at this point in the history
)

Signed-off-by: Lei Jin <[email protected]>
  • Loading branch information
leijin-lw authored Jun 4, 2024
1 parent b36316e commit e10ebf2
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -112,6 +112,7 @@ A Terraform Module to configure the Lacework Agentless Scanner.
| <a name="output_bucket_name"></a> [bucket\_name](#output\_bucket\_name) | The storage bucket name for Agentless Workload Scanning data. |
| <a name="output_lacework_account"></a> [lacework\_account](#output\_lacework\_account) | Lacework Account Name for Integration. |
| <a name="output_lacework_domain"></a> [lacework\_domain](#output\_lacework\_domain) | Lacework Domain Name for Integration. |
| <a name="output_lacework_integration_guid"></a> [lacework\_integration\_guid](#output\_lacework\_integration\_guid) | GUID of the created Lacework integration |
| <a name="output_prefix"></a> [prefix](#output\_prefix) | Prefix used to add uniqueness to resource names. |
| <a name="output_project_filter_list"></a> [project\_filter\_list](#output\_project\_filter\_list) | The list of projects to scan in this module. |
| <a name="output_service_account_name"></a> [service\_account\_name](#output\_service\_account\_name) | The service account name for Lacework. |
Expand Down
5 changes: 5 additions & 0 deletions output.tf
Original file line number Diff line number Diff line change
Expand Up @@ -52,4 +52,9 @@ output "suffix" {
output "project_filter_list" {
value = local.final_project_filter_list
description = "The list of projects to scan in this module."
}

output "lacework_integration_guid" {
value = var.global ? lacework_integration_gcp_agentless_scanning.lacework_cloud_account[0].intg_guid : null
description = "GUID of the created Lacework integration"
}

0 comments on commit e10ebf2

Please sign in to comment.