mirror of
https://github.com/ysoftdevs/terraform-aws-eks.git
synced 2026-04-19 23:31:17 +02:00
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:
committed by
Max Williams
parent
b81a15ad41
commit
18e00861e4
@@ -1,7 +1,8 @@
|
||||
resource "aws_eks_cluster" "this" {
|
||||
name = "${var.cluster_name}"
|
||||
role_arn = "${aws_iam_role.cluster.arn}"
|
||||
version = "${var.cluster_version}"
|
||||
name = "${var.cluster_name}"
|
||||
enabled_cluster_log_types = "${var.cluster_enabled_log_types}"
|
||||
role_arn = "${aws_iam_role.cluster.arn}"
|
||||
version = "${var.cluster_version}"
|
||||
|
||||
vpc_config {
|
||||
security_group_ids = ["${local.cluster_security_group_id}"]
|
||||
|
||||
Reference in New Issue
Block a user