Skip to content

Commit 12b67f3

Browse files
staging the 1.3.0 release. Will revisit the changelog
1 parent 0a36674 commit 12b67f3

File tree

5 files changed

+18
-18
lines changed

5 files changed

+18
-18
lines changed

CHANGELOG.md

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -5,23 +5,24 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](http://keepachangelog.com/) and this
66
project adheres to [Semantic Versioning](http://semver.org/).
77

8-
## [[v1.4.0](https://github.com/terraform-aws-modules/terraform-aws-eks/compare/v1.3.0...v1.4.0)] - 2018-07-12]
8+
## [[v1.4.0](https://github.com/terraform-aws-modules/terraform-aws-eks/compare/v1.3.0...HEAD)] - 2018-07-??]
99

1010
### Added
1111

12-
- New variables `map_accounts`, `map_roles` and `map_users` in order to manage additional entries in the `aws-auth` configmap. (by @max-rocket-internet)
12+
- Some excellent feature. (you're on fire, @me 🔥)
13+
14+
### Changed
15+
16+
- A very thoughtful change. (Boomshakalaka, @self 🏀)
1317

14-
## [[v1.3.0](https://github.com/terraform-aws-modules/terraform-aws-eks/compare/v1.2.0...v1.3.0)] - 2018-07-??]
18+
## [[v1.3.0](https://github.com/terraform-aws-modules/terraform-aws-eks/compare/v1.2.0...v1.3.0)] - 2018-07-11]
1519

1620
### Added
1721

22+
- New variables `map_accounts`, `map_roles` and `map_users` in order to manage additional entries in the `aws-auth` configmap. (by @max-rocket-internet)
1823
- kubelet_node_labels worker group option allows setting --node-labels= in kubelet. (Hat-tip, @bshelton229 👒)
1924
- `worker_iam_role_arn` added to outputs. Sweet, @hatemosphere 🔥
2025

21-
### Changed
22-
23-
- your excellent change. (Boomshakalaka, @self 🏀)
24-
2526
## [[v1.2.0](https://github.com/terraform-aws-modules/terraform-aws-eks/compare/v1.1.0...v1.2.0)] - 2018-07-01]
2627

2728
### Added

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -98,9 +98,9 @@ MIT Licensed. See [LICENSE](https://github.com/terraform-aws-modules/terraform-a
9898
| cluster_security_group_id | If provided, the EKS cluster will be attached to this security group. If not given, a security group will be created with necessary ingres/egress to work with the workers and provide API access to your current IP/32. | string | `` | no |
9999
| cluster_version | Kubernetes version to use for the EKS cluster. | string | `1.10` | no |
100100
| config_output_path | Determines where config files are placed if using configure_kubectl_session and you want config files to land outside the current working directory. | string | `./` | no |
101-
| kubeconfig_aws_authenticator_additional_args | Any additional arguments to pass to the authenticator such as the role to assume ["-r", "MyEksRole"] | list | `<list>` | no |
102-
| kubeconfig_aws_authenticator_command | Command to use to to fetch AWS EKS credentials | string | `heptio-authenticator-aws` | no |
103-
| kubeconfig_aws_authenticator_env_variables | Environment variables that should be used when executing the authenticator i.e. { AWS_PROFILE = "eks"} | map | `<map>` | no |
101+
| kubeconfig_aws_authenticator_additional_args | Any additional arguments to pass to the authenticator such as the role to assume. e.g. ["-r", "MyEksRole"]. | list | `<list>` | no |
102+
| kubeconfig_aws_authenticator_command | Command to use to to fetch AWS EKS credentials. | string | `aws-iam-authenticator` | no |
103+
| kubeconfig_aws_authenticator_env_variables | Environment variables that should be used when executing the authenticator. e.g. { AWS_PROFILE = "eks"}. | map | `<map>` | no |
104104
| kubeconfig_name | Override the default name used for items kubeconfig. | string | `` | no |
105105
| manage_aws_auth | Whether to write and apply the aws-auth configmap file. | string | `true` | no |
106106
| map_accounts | Additional AWS account numbers to add to the aws-auth configmap. See examples/eks_test_fixture/variables.tf for example format. | list | `<list>` | no |
@@ -127,7 +127,7 @@ MIT Licensed. See [LICENSE](https://github.com/terraform-aws-modules/terraform-a
127127
| cluster_version | The Kubernetes server version for the EKS cluster. |
128128
| config_map_aws_auth | A kubernetes configuration to authenticate to this EKS cluster. |
129129
| kubeconfig | kubectl config file contents for this EKS cluster. |
130-
| worker_iam_role_name | IAM role name attached to EKS workers |
131130
| worker_iam_role_arn | IAM role ID attached to EKS workers |
131+
| worker_iam_role_name | IAM role name attached to EKS workers |
132132
| worker_security_group_id | Security group ID attached to the EKS workers. |
133133
| workers_asg_arns | IDs of the autoscaling groups containing workers. |

local.tf

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,7 @@ locals {
88
worker_security_group_id = "${coalesce(join("", aws_security_group.workers.*.id), var.worker_security_group_id)}"
99
workstation_external_cidr = "${chomp(data.http.workstation_external_ip.body)}/32"
1010
workstation_cidr = "${coalesce(var.workstation_cidr, local.workstation_external_cidr)}"
11-
12-
kubeconfig_name = "${var.kubeconfig_name == "" ? "eks_${var.cluster_name}" : var.kubeconfig_name}"
11+
kubeconfig_name = "${var.kubeconfig_name == "" ? "eks_${var.cluster_name}" : var.kubeconfig_name}"
1312

1413
# Mapping from the node type that we selected and the max number of pods that it can run
1514
# Taken from https://amazon-eks.s3-us-west-2.amazonaws.com/1.10.3/2018-06-05/amazon-eks-nodegroup.yaml

variables.tf

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ variable "cluster_security_group_id" {
88
}
99

1010
variable "workstation_cidr" {
11-
description = "Override the default ingress rule that allows communication with the EKS cluster API. If not given, will use current IP/32. "
11+
description = "Override the default ingress rule that allows communication with the EKS cluster API. If not given, will use current IP/32. "
1212
default = ""
1313
}
1414

@@ -105,18 +105,18 @@ variable "worker_sg_ingress_from_port" {
105105
}
106106

107107
variable "kubeconfig_aws_authenticator_command" {
108-
description = "Command to use to to fetch AWS EKS credentials"
108+
description = "Command to use to to fetch AWS EKS credentials."
109109
default = "aws-iam-authenticator"
110110
}
111111

112112
variable "kubeconfig_aws_authenticator_additional_args" {
113-
description = "Any additional arguments to pass to the authenticator such as the role to assume [\"-r\", \"MyEksRole\"]"
113+
description = "Any additional arguments to pass to the authenticator such as the role to assume. e.g. [\"-r\", \"MyEksRole\"]."
114114
type = "list"
115115
default = []
116116
}
117117

118118
variable "kubeconfig_aws_authenticator_env_variables" {
119-
description = "Environment variables that should be used when executing the authenticator i.e. { AWS_PROFILE = \"eks\"}"
119+
description = "Environment variables that should be used when executing the authenticator. e.g. { AWS_PROFILE = \"eks\"}."
120120
type = "map"
121121
default = {}
122122
}

version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
v1.2.0
1+
v1.3.0

0 commit comments

Comments
 (0)