From 674a818ec7e5a6e24c58a4682e894415e5e75dd8 Mon Sep 17 00:00:00 2001 From: alexeyovriakh Date: Thu, 8 Feb 2024 11:01:26 +0000 Subject: [PATCH] docs: Update variable descriptions --- modules/services/eks/variables.tf | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/modules/services/eks/variables.tf b/modules/services/eks/variables.tf index 5cfd4c8..f32a662 100644 --- a/modules/services/eks/variables.tf +++ b/modules/services/eks/variables.tf @@ -1,20 +1,20 @@ variable "region" { - description = "The AWS region where clusters reside" + description = "The AWS region where clusters are located" type = string } variable "onboard_all_clusters" { - description = "Should all public clusters be onboarded and scanned by Sysdig" + description = "Set the value to true if all public clusters should be scanned by Sysdig" type = bool default = false } variable "clusters" { - description = "Names of the clusters to be onboarded and scanned by Sysdig" + description = "Please list the clusters to be scanned by Sysdig (when 'onboard_all_clusters' is set to false, only the clusters specified here will be scanned)" type = set(string) } variable "principal_arn" { - description = "The IAM Principal ARN which will access the EKS cluster" + description = "Sysdig's IAM Principal ARN which will access the EKS clusters" type = string }