Skip to content

Commit

Permalink
docs: Update variable descriptions
Browse files Browse the repository at this point in the history
  • Loading branch information
alexeyovriakh committed Feb 8, 2024
1 parent 1fe6ae3 commit 674a818
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions modules/services/eks/variables.tf
Original file line number Diff line number Diff line change
@@ -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
}

0 comments on commit 674a818

Please sign in to comment.