Skip to content

Commit edcbba6

Browse files
1 parent 813c607 commit edcbba6

File tree

3 files changed

+3
-1
lines changed

3 files changed

+3
-1
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ project adheres to [Semantic Versioning](http://semver.org/).
1111

1212
### Added
1313

14+
- Added `tags` to `aws_eks_cluster` introduced by terraform-provider-aws 2.31.0 (by @morganchristiansson)
1415
- Write your awesome addition here (by @you)
1516

1617
### Changed

cluster.tf

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ resource "aws_eks_cluster" "this" {
1111
enabled_cluster_log_types = var.cluster_enabled_log_types
1212
role_arn = local.cluster_iam_role_arn
1313
version = var.cluster_version
14+
tags = var.tags
1415

1516
vpc_config {
1617
security_group_ids = [local.cluster_security_group_id]

versions.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ terraform {
22
required_version = ">= 0.12"
33

44
required_providers {
5-
aws = ">= 2.28.1"
5+
aws = ">= 2.31.0"
66
local = ">= 1.2"
77
null = ">= 2.1"
88
template = ">= 2.1"

0 commit comments

Comments
 (0)