diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml
index 9349947..12756e9 100644
--- a/.pre-commit-config.yaml
+++ b/.pre-commit-config.yaml
@@ -30,7 +30,7 @@ repos:
- "--verbose"
- "--allow-parallel-runners"
- repo: https://github.com/antonbabenko/pre-commit-terraform
- rev: v1.90.0
+ rev: v1.91.0
hooks:
- id: terraform_fmt
- id: terraform_docs
@@ -47,6 +47,6 @@ repos:
args:
- --args=--config=__GIT_WORKING_DIR__/.tflint.hcl
- repo: https://github.com/renovatebot/pre-commit-hooks
- rev: 37.385.0
+ rev: 37.399.9
hooks:
- id: renovate-config-validator
diff --git a/examples/complete/README.md b/examples/complete/README.md
index f5af116..26d6206 100644
--- a/examples/complete/README.md
+++ b/examples/complete/README.md
@@ -24,7 +24,7 @@
| Name | Source | Version |
|------|--------|---------|
-| [bastion](#module\_bastion) | git::https://github.com/defenseunicorns/terraform-aws-bastion.git | v0.0.16 |
+| [bastion](#module\_bastion) | git::https://github.com/defenseunicorns/terraform-aws-bastion.git | v0.0.17 |
| [password\_lambda](#module\_password\_lambda) | ../../modules/password-rotation | n/a |
| [subnet\_addrs](#module\_subnet\_addrs) | git::https://github.com/hashicorp/terraform-cidr-subnets | v1.0.0 |
| [vpc](#module\_vpc) | git::https://github.com/defenseunicorns/terraform-aws-vpc.git | v0.1.11 |
diff --git a/examples/complete/main.tf b/examples/complete/main.tf
index 7cf7532..a1b4320 100644
--- a/examples/complete/main.tf
+++ b/examples/complete/main.tf
@@ -314,7 +314,7 @@ data "aws_ami" "amazonlinux2" {
}
module "bastion" {
- source = "git::https://github.com/defenseunicorns/terraform-aws-bastion.git?ref=v0.0.16"
+ source = "git::https://github.com/defenseunicorns/terraform-aws-bastion.git?ref=v0.0.17"
enable_bastion_terraform_permissions = true
diff --git a/modules/password-rotation/README.md b/modules/password-rotation/README.md
index 93959ad..5d8aea8 100644
--- a/modules/password-rotation/README.md
+++ b/modules/password-rotation/README.md
@@ -110,7 +110,7 @@ For more detailed usage and troubleshooting, please refer to the function code a
| Name | Source | Version |
|------|--------|---------|
-| [password\_lambda](#module\_password\_lambda) | git::https://github.com/terraform-aws-modules/terraform-aws-lambda.git | v7.4.0 |
+| [password\_lambda](#module\_password\_lambda) | git::https://github.com/terraform-aws-modules/terraform-aws-lambda.git | v7.5.0 |
| [secrets\_manager](#module\_secrets\_manager) | git::https://github.com/terraform-aws-modules/terraform-aws-secrets-manager.git | v1.1.2 |
## Resources
diff --git a/modules/password-rotation/main.tf b/modules/password-rotation/main.tf
index af4ebf3..f399606 100644
--- a/modules/password-rotation/main.tf
+++ b/modules/password-rotation/main.tf
@@ -11,7 +11,7 @@ data "aws_iam_session_context" "current" {
}
module "password_lambda" {
- source = "git::https://github.com/terraform-aws-modules/terraform-aws-lambda.git?ref=v7.4.0"
+ source = "git::https://github.com/terraform-aws-modules/terraform-aws-lambda.git?ref=v7.5.0"
function_name = join("-", compact([var.prefix, "password-rotation-function", var.suffix]))
description = var.description
handler = var.handler