Skip to content

Commit 23149b9

Browse files
committed
fix: resolved the issue on the csi driver
1 parent 9f0416d commit 23149b9

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -532,7 +532,7 @@ The `terraform-docs` utility is used to generate this README. Follow the below s
532532
| <a name="input_cloudwatch_observability"></a> [cloudwatch\_observability](#input\_cloudwatch\_observability) | The CloudWatch Observability configuration | <pre>object({<br/> ## Indicates if we should enable the CloudWatch Observability platform<br/> enable = optional(bool, false)<br/> ## The namespace to deploy the CloudWatch Observability platform to<br/> namespace = optional(string, "cloudwatch-observability")<br/> ## The service account to deploy the CloudWatch Observability platform to<br/> service_account = optional(string, "cloudwatch-observability")<br/> })</pre> | `{}` | no |
533533
| <a name="input_cluster_enabled_log_types"></a> [cluster\_enabled\_log\_types](#input\_cluster\_enabled\_log\_types) | List of log types to enable for the EKS cluster. | `list(string)` | <pre>[<br/> "api",<br/> "audit",<br/> "authenticator",<br/> "controllerManager",<br/> "scheduler"<br/>]</pre> | no |
534534
| <a name="input_create_kms_key"></a> [create\_kms\_key](#input\_create\_kms\_key) | Whether to create a KMS key for the EKS cluster. | `bool` | `true` | no |
535-
| <a name="input_ebs_csi_driver"></a> [ebs\_csi\_driver](#input\_ebs\_csi\_driver) | The EBS CSI driver configuration | <pre>object({<br/> ## Indicates if we should enable the EBS CSI driver<br/> enable = optional(bool, false)<br/> ## The KMS key ARNs to allow the EBS CSI driver to manage encrypted volumes<br/> kms_key_arns = optional(list(string), [])<br/> ## The version of the EBS CSI driver<br/> version = optional(string, "v1.51.0-eksbuild.1")<br/> ## The service account to deploy the EBS CSI driver to<br/> service_account = optional(string, "ebs-csi-controller-sa")<br/> })</pre> | `{}` | no |
535+
| <a name="input_ebs_csi_driver"></a> [ebs\_csi\_driver](#input\_ebs\_csi\_driver) | The EBS CSI driver configuration | <pre>object({<br/> ## Indicates if we should enable the EBS CSI driver<br/> enable = optional(bool, false)<br/> ## The KMS key ARNs to allow the EBS CSI driver to manage encrypted volumes<br/> kms_key_arns = optional(list(string), [])<br/> ## The version of the EBS CSI driver<br/> version = optional(string, "v1.51.0-eksbuild.1")<br/> ## The service account to deploy the EBS CSI driver to<br/> service_account = optional(string, "ebs-csi-controller-sa")<br/> ## The namespace to deploy the EBS CSI driver to<br/> namespace = optional(string, "kube-system")<br/> })</pre> | `{}` | no |
536536
| <a name="input_efs_csi_driver"></a> [efs\_csi\_driver](#input\_efs\_csi\_driver) | The EFS CSI driver configuration | <pre>object({<br/> ## Indicates if we should enable the EFS CSI driver<br/> enable = optional(bool, false)<br/> ## The version of the EFS CSI driver<br/> version = optional(string, "v1.6.0-eksbuild.1")<br/> ## The service account to deploy the EFS CSI driver to<br/> service_account = optional(string, "efs-csi-controller-sa")<br/> ## The namespace to deploy the EFS CSI driver to<br/> namespace = optional(string, "kube-system")<br/> })</pre> | `{}` | no |
537537
| <a name="input_enable_cluster_creator_admin_permissions"></a> [enable\_cluster\_creator\_admin\_permissions](#input\_enable\_cluster\_creator\_admin\_permissions) | Whether to enable cluster creator admin permissions (else create access entries for the cluster creator) | `bool` | `false` | no |
538538
| <a name="input_enable_irsa"></a> [enable\_irsa](#input\_enable\_irsa) | Whether to enable IRSA for the EKS cluster. | `bool` | `true` | no |

variables.tf

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,8 @@ variable "ebs_csi_driver" {
4747
version = optional(string, "v1.51.0-eksbuild.1")
4848
## The service account to deploy the EBS CSI driver to
4949
service_account = optional(string, "ebs-csi-controller-sa")
50+
## The namespace to deploy the EBS CSI driver to
51+
namespace = optional(string, "kube-system")
5052
})
5153
default = {}
5254
}

0 commit comments

Comments
 (0)