Morgan Christiansson
2019-10-04 13:48:53 +01:00
committed by Max Williams
parent 813c607e90
commit edcbba64ef
3 changed files with 3 additions and 1 deletions

View File

@@ -11,6 +11,7 @@ project adheres to [Semantic Versioning](http://semver.org/).
### Added
- Added `tags` to `aws_eks_cluster` introduced by terraform-provider-aws 2.31.0 (by @morganchristiansson)
- Write your awesome addition here (by @you)
### Changed

View File

@@ -11,6 +11,7 @@ resource "aws_eks_cluster" "this" {
enabled_cluster_log_types = var.cluster_enabled_log_types
role_arn = local.cluster_iam_role_arn
version = var.cluster_version
tags = var.tags
vpc_config {
security_group_ids = [local.cluster_security_group_id]

View File

@@ -2,7 +2,7 @@ terraform {
required_version = ">= 0.12"
required_providers {
aws = ">= 2.28.1"
aws = ">= 2.31.0"
local = ">= 1.2"
null = ">= 2.1"
template = ">= 2.1"