Adding EKS Control Plane logging options (#340)

* Adding EKS Control Plane logging options

* Added feature addition

* Removing 'optional'

* Adding documentation, and changing variable order

* Using pre-commit instead

* adding IAM instance profiles to outputs, addresses #323 (#329)

* adding IAM instance profiles to outputs

* updating changelog

* updated README
This commit is contained in:
Scott Crooks
2019-04-11 15:21:09 +02:00
committed by Max Williams
parent b81a15ad41
commit 18e00861e4
4 changed files with 12 additions and 3 deletions

View File

@@ -1,3 +1,9 @@
variable "cluster_enabled_log_types" {
default = []
description = "A list of the desired control plane logging to enable. For more information, see Amazon EKS Control Plane Logging documentation (https://docs.aws.amazon.com/eks/latest/userguide/control-plane-logs.html)"
type = "list"
}
variable "cluster_name" {
description = "Name of the EKS cluster. Also used as a prefix in names of related resources."
}