From f858186a1795fd5f0c799e5c67f2aca8f0f77fad Mon Sep 17 00:00:00 2001 From: Zachary Winnerman <98712682+zwinnerman-fleetdm@users.noreply.github.com> Date: Tue, 3 Jan 2023 19:58:13 -0500 Subject: [PATCH] Bump module versions (#9170) --- infrastructure/sandbox/Monitoring/main.tf | 2 +- infrastructure/sandbox/SharedInfrastructure/alb.tf | 6 ++++-- infrastructure/sandbox/SharedInfrastructure/eks.tf | 4 ++-- infrastructure/sandbox/SharedInfrastructure/rds.tf | 2 +- 4 files changed, 8 insertions(+), 6 deletions(-) diff --git a/infrastructure/sandbox/Monitoring/main.tf b/infrastructure/sandbox/Monitoring/main.tf index f9e18677ee..a27bf94e6a 100644 --- a/infrastructure/sandbox/Monitoring/main.tf +++ b/infrastructure/sandbox/Monitoring/main.tf @@ -19,7 +19,7 @@ locals { module "notify_slack" { source = "terraform-aws-modules/notify-slack/aws" - version = "~> 4.0" + version = "5.5.0" sns_topic_name = var.prefix diff --git a/infrastructure/sandbox/SharedInfrastructure/alb.tf b/infrastructure/sandbox/SharedInfrastructure/alb.tf index 6affc4363a..54fa5949db 100644 --- a/infrastructure/sandbox/SharedInfrastructure/alb.tf +++ b/infrastructure/sandbox/SharedInfrastructure/alb.tf @@ -123,7 +123,8 @@ resource "cloudflare_record" "wildcard" { } module "s3_bucket_for_logs" { - source = "terraform-aws-modules/s3-bucket/aws" + source = "terraform-aws-modules/s3-bucket/aws" + version = "3.6.0" bucket = "${var.prefix}-alb-logs" acl = "log-delivery-write" @@ -180,7 +181,8 @@ resource "aws_athena_database" "logs" { } module "athena-s3-bucket" { - source = "terraform-aws-modules/s3-bucket/aws" + source = "terraform-aws-modules/s3-bucket/aws" + version = "3.6.0" bucket = "${var.prefix}-alb-logs-athena" acl = "log-delivery-write" diff --git a/infrastructure/sandbox/SharedInfrastructure/eks.tf b/infrastructure/sandbox/SharedInfrastructure/eks.tf index 936560a4d6..78ef32517c 100644 --- a/infrastructure/sandbox/SharedInfrastructure/eks.tf +++ b/infrastructure/sandbox/SharedInfrastructure/eks.tf @@ -87,7 +87,7 @@ data "aws_iam_policy_document" "fluentbit_logs" { } module "aws-eks-accelerator-for-terraform" { - source = "github.com/aws-samples/aws-eks-accelerator-for-terraform.git" + source = "github.com/aws-ia/terraform-aws-eks-blueprints.git?ref=v4.20.0" cluster_name = var.prefix # EKS Cluster VPC and Subnets @@ -143,7 +143,7 @@ data "aws_eks_cluster_auth" "cluster" { } module "kubernetes-addons" { - source = "github.com/aws-samples/aws-eks-accelerator-for-terraform.git//modules/kubernetes-addons" + source = "github.com/aws-ia/terraform-aws-eks-blueprints.git//modules/kubernetes-addons?ref=v4.20.0" eks_cluster_id = module.aws-eks-accelerator-for-terraform.eks_cluster_id eks_cluster_endpoint = module.aws-eks-accelerator-for-terraform.eks_cluster_endpoint diff --git a/infrastructure/sandbox/SharedInfrastructure/rds.tf b/infrastructure/sandbox/SharedInfrastructure/rds.tf index 7ce27335a2..7a3ca575aa 100644 --- a/infrastructure/sandbox/SharedInfrastructure/rds.tf +++ b/infrastructure/sandbox/SharedInfrastructure/rds.tf @@ -47,7 +47,7 @@ resource "aws_secretsmanager_secret_version" "mysql" { module "main" { source = "terraform-aws-modules/rds-aurora/aws" - version = "6.2.0" + version = "7.6.0" name = var.prefix engine = "aurora-mysql"