Skip to content

Commit

Permalink
Merge pull request #515 from Smana/chore_upgrade_irsa_tf
Browse files Browse the repository at this point in the history
chore(tofu): upgrade IRSA module
  • Loading branch information
Smana authored Oct 22, 2024
2 parents a8374d3 + 11f295a commit d87076a
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion infrastructure/base/crossplane/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ cd rdsinstance
kcl mod push oci://ttl.sh/ogenki-cnref/rdsinstance:v0.0.1-24h
```

The OCI artifact will be available for 24 hours, as specified in the tag. You can then reference it in your Crossplane composition:
Here we're using [TTL.sh](https://ttl.sh/) and the OCI artifact will be available for 24 hours, as specified in the tag. You can then reference it in your Crossplane composition:

```yaml
...
Expand Down
4 changes: 2 additions & 2 deletions terraform/eks/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -105,8 +105,8 @@ tofu destroy --var-file variables.tfvars
| Name | Source | Version |
|------|--------|---------|
| <a name="module_eks"></a> [eks](#module\_eks) | terraform-aws-modules/eks/aws | ~> 20 |
| <a name="module_irsa_crossplane"></a> [irsa\_crossplane](#module\_irsa\_crossplane) | terraform-aws-modules/iam/aws//modules/iam-role-for-service-accounts-eks | 5.46.0 |
| <a name="module_irsa_ebs_csi_driver"></a> [irsa\_ebs\_csi\_driver](#module\_irsa\_ebs\_csi\_driver) | terraform-aws-modules/iam/aws//modules/iam-role-for-service-accounts-eks | 5.46.0 |
| <a name="module_irsa_crossplane"></a> [irsa\_crossplane](#module\_irsa\_crossplane) | terraform-aws-modules/iam/aws//modules/iam-role-for-service-accounts-eks | 5.47.0 |
| <a name="module_irsa_ebs_csi_driver"></a> [irsa\_ebs\_csi\_driver](#module\_irsa\_ebs\_csi\_driver) | terraform-aws-modules/iam/aws//modules/iam-role-for-service-accounts-eks | 5.47.0 |
| <a name="module_karpenter"></a> [karpenter](#module\_karpenter) | terraform-aws-modules/eks/aws//modules/karpenter | ~> 20.0 |

## Resources
Expand Down
4 changes: 2 additions & 2 deletions terraform/eks/irsa.tf
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# AWS permissions for the EBS-CSI-DRIVER
module "irsa_ebs_csi_driver" {
source = "terraform-aws-modules/iam/aws//modules/iam-role-for-service-accounts-eks"
version = "5.46.0"
version = "5.47.0"
role_name = "${var.cluster_name}-ebs_csi_driver"

assume_role_condition_test = "StringLike"
Expand All @@ -22,7 +22,7 @@ module "irsa_ebs_csi_driver" {
# AWS permissions for Crossplane
module "irsa_crossplane" {
source = "terraform-aws-modules/iam/aws//modules/iam-role-for-service-accounts-eks"
version = "5.46.0"
version = "5.47.0"
role_name = "${var.cluster_name}-crossplane"

assume_role_condition_test = "StringLike"
Expand Down

0 comments on commit d87076a

Please sign in to comment.