We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b769147 commit 4275dd0Copy full SHA for 4275dd0
aws_eks/variables.tf
@@ -28,12 +28,10 @@ variable "node_groups" {
28
default = {}
29
}
30
variable "encryption_config" {
31
- description = "Configuration for cluster encryption"
32
- type = list(object({
33
- provider = object({
34
- key_arn = string
35
- })
36
- resources = list(string)
37
- }))
38
- default = []
+ description = "Configuration block with encryption configuration for the cluster"
+ type = object({
+ provider_key_arn = optional(string)
+ resources = optional(list(string), ["secrets"])
+ })
+ default = {}
39
0 commit comments