mirror of
https://github.com/terraform-aws-modules/terraform-aws-eks.git
synced 2025-09-09 19:32:58 +08:00
Removed unused variable. Updated Changelog. Formatting.
This commit is contained in:
+2
-1
@@ -7,12 +7,13 @@ project adheres to [Semantic Versioning](http://semver.org/).
|
|||||||
|
|
||||||
## Next release
|
## Next release
|
||||||
|
|
||||||
## [[v7.?.?](https://github.com/terraform-aws-modules/terraform-aws-eks/compare/v7.0.0...HEAD)] - 2019-??-??]
|
## [[v8.?.?](https://github.com/terraform-aws-modules/terraform-aws-eks/compare/v7.0.0...HEAD)] - 2019-??-??]
|
||||||
|
|
||||||
- Test against minimum versions specified in `versions.tf` (by @dpiddockcmp)
|
- Test against minimum versions specified in `versions.tf` (by @dpiddockcmp)
|
||||||
- Added flag `create_eks` to conditionally create resources (by @syst0m / @tbeijen)
|
- Added flag `create_eks` to conditionally create resources (by @syst0m / @tbeijen)
|
||||||
- Updated instance_profile_names and instance_profile_arns outputs to also consider launch template as well as asg (by @ankitwal)
|
- Updated instance_profile_names and instance_profile_arns outputs to also consider launch template as well as asg (by @ankitwal)
|
||||||
- **Breaking:** Configure the aws-auth configmap using the terraform kubernetes providers. Read the [docs](docs/upgrading-to-aws-auth-kubernetes-provider.md) for more info (by @sdehaes)
|
- **Breaking:** Configure the aws-auth configmap using the terraform kubernetes providers. Read the [docs](docs/upgrading-to-aws-auth-kubernetes-provider.md) for more info (by @sdehaes)
|
||||||
|
- Removed no longer used variable `write_aws_auth_config` (by @tbeijen)
|
||||||
- Updated application of `aws-auth` configmap to create `kube_config.yaml` and `aws_auth_configmap.yaml` in sequence (and not parallel) to `kubectl apply` (by @knittingdev)
|
- Updated application of `aws-auth` configmap to create `kube_config.yaml` and `aws_auth_configmap.yaml` in sequence (and not parallel) to `kubectl apply` (by @knittingdev)
|
||||||
- Exit with error code when `aws-auth` configmap is unable to be updated (by @knittingdev)
|
- Exit with error code when `aws-auth` configmap is unable to be updated (by @knittingdev)
|
||||||
- Fix deprecated interpolation-only expression (by @angelabad)
|
- Fix deprecated interpolation-only expression (by @angelabad)
|
||||||
|
|||||||
@@ -177,7 +177,6 @@ MIT Licensed. See [LICENSE](https://github.com/terraform-aws-modules/terraform-a
|
|||||||
| workers\_additional\_policies | Additional policies to be added to workers | list(string) | `[]` | no |
|
| workers\_additional\_policies | Additional policies to be added to workers | list(string) | `[]` | no |
|
||||||
| workers\_group\_defaults | Override default values for target groups. See workers_group_defaults_defaults in local.tf for valid keys. | any | `{}` | no |
|
| workers\_group\_defaults | Override default values for target groups. See workers_group_defaults_defaults in local.tf for valid keys. | any | `{}` | no |
|
||||||
| workers\_role\_name | User defined workers role name. | string | `""` | no |
|
| workers\_role\_name | User defined workers role name. | string | `""` | no |
|
||||||
| write\_aws\_auth\_config | Whether to write the aws-auth configmap file. | bool | `"true"` | no |
|
|
||||||
| write\_kubeconfig | Whether to write a Kubectl config file containing the cluster configuration. Saved to `config_output_path`. | bool | `"true"` | no |
|
| write\_kubeconfig | Whether to write a Kubectl config file containing the cluster configuration. Saved to `config_output_path`. | bool | `"true"` | no |
|
||||||
|
|
||||||
## Outputs
|
## Outputs
|
||||||
|
|||||||
+1
-1
@@ -1,6 +1,6 @@
|
|||||||
output "cluster_id" {
|
output "cluster_id" {
|
||||||
description = "The name/id of the EKS cluster."
|
description = "The name/id of the EKS cluster."
|
||||||
value = element(concat(aws_eks_cluster.this.*.id, list("")), 0)
|
value = element(concat(aws_eks_cluster.this.*.id, list("")), 0)
|
||||||
}
|
}
|
||||||
|
|
||||||
output "cluster_arn" {
|
output "cluster_arn" {
|
||||||
|
|||||||
@@ -48,12 +48,6 @@ variable "manage_aws_auth" {
|
|||||||
default = true
|
default = true
|
||||||
}
|
}
|
||||||
|
|
||||||
variable "write_aws_auth_config" {
|
|
||||||
description = "Whether to write the aws-auth configmap file."
|
|
||||||
type = bool
|
|
||||||
default = true
|
|
||||||
}
|
|
||||||
|
|
||||||
variable "map_accounts" {
|
variable "map_accounts" {
|
||||||
description = "Additional AWS account numbers to add to the aws-auth configmap. See examples/basic/variables.tf for example format."
|
description = "Additional AWS account numbers to add to the aws-auth configmap. See examples/basic/variables.tf for example format."
|
||||||
type = list(string)
|
type = list(string)
|
||||||
|
|||||||
Reference in New Issue
Block a user