From b6320a56f8c4f6242d7f15883897733600aecdc0 Mon Sep 17 00:00:00 2001 From: ipcrm Date: Mon, 8 Apr 2024 20:39:05 +0000 Subject: [PATCH] feat(GROW-2876): add output for lacework integration ID --- README.md | 1 + output.tf | 5 +++++ 2 files changed, 6 insertions(+) diff --git a/README.md b/README.md index 819586f..2c9e23f 100644 --- a/README.md +++ b/README.md @@ -70,6 +70,7 @@ Terraform module for configuring an integration with Lacework and AWS for cloud | [external\_id](#output\_external\_id) | The External ID configured into the IAM role | | [iam\_role\_arn](#output\_iam\_role\_arn) | The IAM Role ARN | | [iam\_role\_name](#output\_iam\_role\_name) | The IAM Role name | +| [lacework\_integration\_guid](#output\_lacework\_integration\_guid) | The GUID for the created Lacework integration | ## Lacework Audit Policy diff --git a/output.tf b/output.tf index 63aff6b..b1bc732 100644 --- a/output.tf +++ b/output.tf @@ -12,3 +12,8 @@ output "iam_role_arn" { value = local.iam_role_arn description = "The IAM Role ARN" } + +output "lacework_integration_guid" { + description = "The GUID for the created Lacework integration" + value = lacework_integration_aws_cfg.default.intg_guid +}