Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
2 changes: 1 addition & 1 deletion examples/complete/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@

| Name | Source | Version |
|------|--------|---------|
| <a name="module_bastion"></a> [bastion](#module\_bastion) | git::https://github.com/defenseunicorns/terraform-aws-bastion.git | v0.0.16 |
| <a name="module_bastion"></a> [bastion](#module\_bastion) | git::https://github.com/defenseunicorns/terraform-aws-bastion.git | v0.0.17 |
| <a name="module_password_lambda"></a> [password\_lambda](#module\_password\_lambda) | ../../modules/password-rotation | n/a |
| <a name="module_subnet_addrs"></a> [subnet\_addrs](#module\_subnet\_addrs) | git::https://github.com/hashicorp/terraform-cidr-subnets | v1.0.0 |
| <a name="module_vpc"></a> [vpc](#module\_vpc) | git::https://github.com/defenseunicorns/terraform-aws-vpc.git | v0.1.11 |
Expand Down
2 changes: 1 addition & 1 deletion examples/complete/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion modules/password-rotation/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ For more detailed usage and troubleshooting, please refer to the function code a

| Name | Source | Version |
|------|--------|---------|
| <a name="module_password_lambda"></a> [password\_lambda](#module\_password\_lambda) | git::https://github.com/terraform-aws-modules/terraform-aws-lambda.git | v7.4.0 |
| <a name="module_password_lambda"></a> [password\_lambda](#module\_password\_lambda) | git::https://github.com/terraform-aws-modules/terraform-aws-lambda.git | v7.5.0 |
| <a name="module_secrets_manager"></a> [secrets\_manager](#module\_secrets\_manager) | git::https://github.com/terraform-aws-modules/terraform-aws-secrets-manager.git | v1.1.2 |

## Resources
Expand Down
2 changes: 1 addition & 1 deletion modules/password-rotation/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down