From 0c3c167125c500000021fe9743b461bcd99615cc Mon Sep 17 00:00:00 2001 From: Deepak Verma Date: Wed, 4 Oct 2023 19:40:23 +0530 Subject: [PATCH] tf check fixed --- outputs.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/outputs.tf b/outputs.tf index 1ada093..f4c4479 100644 --- a/outputs.tf +++ b/outputs.tf @@ -4,7 +4,7 @@ output "prefix_list_id" { } output "security_group_id" { - value = var.new_sg && var.enable ? aws_security_group.default[0].id : null + value = var.new_sg && var.enable ? aws_security_group.default[0].id : null description = "IDs on the AWS Security Groups associated with the instance." }