diff --git a/modules/eks/README.md b/modules/eks/README.md index c64e5a8f..a615a6a2 100644 --- a/modules/eks/README.md +++ b/modules/eks/README.md @@ -69,7 +69,7 @@ | Name | Description | Type | Default | Required | |------|-------------|------|---------|:--------:| | [bastion\_info](#input\_bastion\_info) | user = Bastion username.
public\_ip = Bastion public ip.
security\_group\_id = Bastion sg id.
ssh\_bastion\_command = Command to ssh onto bastion. |
object({
user = string
public_ip = string
security_group_id = string
ssh_bastion_command = string
})
| n/a | yes | -| [calico](#input\_calico) | calico = {
version = Configure the version for Calico
image\_registry = Configure the image registry for Calico
} |
object({
image_registry = optional(string, "quay.io")
version = optional(string, "v3.27.3")
})
| `{}` | no | +| [calico](#input\_calico) | calico = {
version = Configure the version for Calico
image\_registry = Configure the image registry for Calico
} |
object({
image_registry = optional(string, "quay.io")
version = optional(string, "v3.28.2")
})
| `{}` | no | | [create\_eks\_role\_arn](#input\_create\_eks\_role\_arn) | Role arn to assume during the EKS cluster creation. | `string` | n/a | yes | | [deploy\_id](#input\_deploy\_id) | Domino Deployment ID | `string` | n/a | yes | | [efs\_security\_group](#input\_efs\_security\_group) | Security Group ID for EFS | `string` | `null` | no | diff --git a/modules/eks/variables.tf b/modules/eks/variables.tf index 92902e03..f6caeec5 100644 --- a/modules/eks/variables.tf +++ b/modules/eks/variables.tf @@ -269,7 +269,7 @@ variable "calico" { type = object({ image_registry = optional(string, "quay.io") - version = optional(string, "v3.27.3") + version = optional(string, "v3.28.2") }) default = {}