-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
1fe6ae3
commit 674a818
Showing
1 changed file
with
4 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
} |