Skip to content

Commit

Permalink
🔀 Merge pull request #21 from ministryofjustice/update-dependencies
Browse files Browse the repository at this point in the history
⬆️ Update module and provider versions
  • Loading branch information
jacobwoffenden committed May 22, 2023
2 parents 0daa7e2 + 3766c8a commit 514208f
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion ebs_csi_driver.tf
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
module "iam_assumable_role_ebs_csi_driver" {
source = "github.com/ministryofjustice/ap-terraform-iam-roles//eks-role?ref=v1.4.0"
source = "github.com/ministryofjustice/ap-terraform-iam-roles//eks-role?ref=v1.4.2"
depends_on = [
module.eks
]
Expand Down
2 changes: 1 addition & 1 deletion iam_cert_manager.tf
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
module "iam_assumable_role_cert_manager" {
source = "github.com/ministryofjustice/ap-terraform-iam-roles//eks-role?ref=v1.4.0"
source = "github.com/ministryofjustice/ap-terraform-iam-roles//eks-role?ref=v1.4.2"
depends_on = [
module.eks
]
Expand Down
2 changes: 1 addition & 1 deletion iam_cluster_autoscaler.tf
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
module "iam_assumable_role_cluster_autoscaler" {
source = "github.com/ministryofjustice/ap-terraform-iam-roles//eks-role?ref=v1.4.0"
source = "github.com/ministryofjustice/ap-terraform-iam-roles//eks-role?ref=v1.4.2"
depends_on = [
module.eks
]
Expand Down
2 changes: 1 addition & 1 deletion iam_external_dns.tf
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
module "iam_assumable_role_external_dns" {
source = "github.com/ministryofjustice/ap-terraform-iam-roles//eks-role?ref=v1.4.0"
source = "github.com/ministryofjustice/ap-terraform-iam-roles//eks-role?ref=v1.4.2"
depends_on = [
module.eks
]
Expand Down
2 changes: 1 addition & 1 deletion iam_external_secrets.tf
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
module "iam_assumable_role_external_secrets" {
source = "github.com/ministryofjustice/ap-terraform-iam-roles//eks-role?ref=v1.4.0"
source = "github.com/ministryofjustice/ap-terraform-iam-roles//eks-role?ref=v1.4.2"
depends_on = [
module.eks
]
Expand Down
2 changes: 1 addition & 1 deletion main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
# tfsec:ignore:aws-vpc-no-public-egress-sgr
module "eks" {
source = "terraform-aws-modules/eks/aws"
version = "17.18.0"
version = "17.24.0"

cluster_encryption_config = [
{
Expand Down
6 changes: 3 additions & 3 deletions versions.tf
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,15 @@ terraform {
required_providers {
aws = {
source = "hashicorp/aws"
version = ">= 3.71.0"
version = ">= 4.0.0"
}

# False positive: the kubernetes provider is used in a sub-module
# tflint-ignore: terraform_unused_required_providers
kubernetes = {
source = "hashicorp/kubernetes"
version = ">= 2.10"
version = ">= 2.0.0"
}
}
required_version = ">= 0.14"
required_version = "~> 1.2"
}

0 comments on commit 514208f

Please sign in to comment.