Skip to content

Commit 3f7f3d8

Browse files
authored
feat(GROW-2928): Add an output to capture Lacework integration GUID (#96)
Signed-off-by: Lei Jin <lei.jin@lacework.net>
1 parent c0c0fc7 commit 3f7f3d8

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -120,6 +120,7 @@ essentialcontacts.googleapis.com
120120

121121
| Name | Description |
122122
|------|-------------|
123+
| <a name="output_lacework_integration_guid"></a> [lacework\_integration\_guid](#output\_lacework\_integration\_guid) | GUID of the created Lacework integration |
123124
| <a name="output_service_account_name"></a> [service\_account\_name](#output\_service\_account\_name) | The Service Account name |
124125
| <a name="output_service_account_private_key"></a> [service\_account\_private\_key](#output\_service\_account\_private\_key) | The private key in JSON format, base64 encoded |
125126
<!-- END_TF_DOCS -->

output.tf

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,3 +8,8 @@ output "service_account_private_key" {
88
description = "The private key in JSON format, base64 encoded"
99
sensitive = true
1010
}
11+
12+
output "lacework_integration_guid" {
13+
value = lacework_integration_gcp_cfg.default.intg_guid
14+
description = "GUID of the created Lacework integration"
15+
}

0 commit comments

Comments
 (0)