diff --git a/README.md b/README.md
index ed3b3fb..eb219d9 100644
--- a/README.md
+++ b/README.md
@@ -120,6 +120,7 @@ essentialcontacts.googleapis.com
| Name | Description |
|------|-------------|
+| [lacework\_integration\_guid](#output\_lacework\_integration\_guid) | GUID of the created Lacework integration |
| [service\_account\_name](#output\_service\_account\_name) | The Service Account name |
| [service\_account\_private\_key](#output\_service\_account\_private\_key) | The private key in JSON format, base64 encoded |
diff --git a/output.tf b/output.tf
index b089c3f..9b81a2e 100644
--- a/output.tf
+++ b/output.tf
@@ -8,3 +8,8 @@ output "service_account_private_key" {
description = "The private key in JSON format, base64 encoded"
sensitive = true
}
+
+output "lacework_integration_guid" {
+ value = lacework_integration_gcp_cfg.default.intg_guid
+ description = "GUID of the created Lacework integration"
+}