Skip to content

Commit

Permalink
Update terraform EKS module to 1.14 version (#1386)
Browse files Browse the repository at this point in the history
Sync up with documentation in `Creating cluster`.

Co-authored-by: Mark Mandel <markmandel@google.com>
  • Loading branch information
markmandel committed Mar 5, 2020
1 parent 022bcbf commit a172102
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions examples/terraform-submodules/eks/module.tf
Expand Up @@ -14,11 +14,11 @@


// Run:
// terraform apply [-var agones_version="1.2.0"]
// to install "1.2.0" version of agones
// terraform apply [-var agones_version="1.4.0"]

// Install latest version of agones
variable "agones_version" {
default = "1.2.0"
default = ""
}

variable "cluster_name" {
Expand Down
4 changes: 2 additions & 2 deletions install/terraform/modules/eks/eks.tf
Expand Up @@ -18,7 +18,7 @@ terraform {
}

provider "aws" {
version = "~> 2.8"
version = "= 2.51.0"
region = var.region
}

Expand Down Expand Up @@ -81,7 +81,7 @@ module "eks" {
cluster_name = "${var.cluster_name}"
subnets = module.vpc.public_subnets
vpc_id = module.vpc.vpc_id
cluster_version = "1.13"
cluster_version = "1.14"

worker_groups_launch_template = [
{
Expand Down
2 changes: 1 addition & 1 deletion site/content/en/docs/Installation/Terraform/_index.md
Expand Up @@ -8,7 +8,7 @@ description: >

## Prerequisites

- [Terraform](https://www.terraform.io/) v0.12.3
- [Terraform](https://www.terraform.io/) v0.12.21
- [Helm](https://docs.helm.sh/helm/) package manager 2.10.0+
- Access to the the Kubernetes hosting provider you are using (e.g. `gcloud`,
`awscli`, or `az` utility installed)
Expand Down

0 comments on commit a172102

Please sign in to comment.