Skip to content
This repository has been archived by the owner on Sep 27, 2024. It is now read-only.

Commit

Permalink
pin irsa module (#137)
Browse files Browse the repository at this point in the history
* Pin module

* Bump changelog

* Fix readme
  • Loading branch information
bushong1 authored Feb 7, 2024
1 parent 0861d07 commit 4674d78
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 2 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,21 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## Unreleased

## 14.0.1

* bugfix: Pin vpc_cni_irsa module to 5.33 to avoid breaking aws provider change

## 14.0.0
* Add precommit ci
* Apply fixes from pre-commit
* Fix fixes from pre-commit
* Fix fix for fixes from pre-commit
* Upgrade to EKS 1.27

## 13.3.4

* bugfix: Pin vpc_cni_irsa module to 5.33 to avoid breaking aws provider change

## 13.3.1

* Attach waf to shared alb
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ Note that this example may create resources which cost money. Run `terraform des
|------|--------|---------|
| <a name="module_eks"></a> [eks](#module\_eks) | terraform-aws-modules/eks/aws | 19.0.4 |
| <a name="module_eks_managed_node_groups"></a> [eks\_managed\_node\_groups](#module\_eks\_managed\_node\_groups) | terraform-aws-modules/eks/aws//modules/eks-managed-node-group | 19.21.0 |
| <a name="module_vpc_cni_irsa"></a> [vpc\_cni\_irsa](#module\_vpc\_cni\_irsa) | terraform-aws-modules/iam/aws//modules/iam-role-for-service-accounts-eks | ~> 5.33 |
| <a name="module_vpc_cni_irsa"></a> [vpc\_cni\_irsa](#module\_vpc\_cni\_irsa) | terraform-aws-modules/iam/aws//modules/iam-role-for-service-accounts-eks | 5.33 |

## Resources

Expand Down
2 changes: 1 addition & 1 deletion main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -316,7 +316,7 @@ module "eks_managed_node_groups" {

module "vpc_cni_irsa" {
source = "terraform-aws-modules/iam/aws//modules/iam-role-for-service-accounts-eks"
version = "~> 5.33"
version = "5.33"

role_name = "${var.cluster_name}-vpc_cni"
attach_vpc_cni_policy = true
Expand Down

0 comments on commit 4674d78

Please sign in to comment.