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 infrastructure/modules/iam/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -173,10 +173,10 @@ No providers.

| Name | Source | Version |
| ---- | ------ | ------- |
| <a name="module_policies"></a> [policies](#module\_policies) | terraform-aws-modules/iam/aws//modules/iam-policy | 6.6.0 |
| <a name="module_policies"></a> [policies](#module\_policies) | terraform-aws-modules/iam/aws//modules/iam-policy | 6.6.1 |
| <a name="module_policy_label"></a> [policy\_label](#module\_policy\_label) | ../tags | n/a |
| <a name="module_role_label"></a> [role\_label](#module\_role\_label) | ../tags | n/a |
| <a name="module_roles"></a> [roles](#module\_roles) | terraform-aws-modules/iam/aws//modules/iam-role | 6.6.0 |
| <a name="module_roles"></a> [roles](#module\_roles) | terraform-aws-modules/iam/aws//modules/iam-role | 6.6.1 |
| <a name="module_this"></a> [this](#module\_this) | ../tags | n/a |

## Resources
Expand Down
4 changes: 2 additions & 2 deletions infrastructure/modules/iam/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ module "role_label" {

module "policies" {
source = "terraform-aws-modules/iam/aws//modules/iam-policy"
version = "6.6.0"
version = "6.6.1"
for_each = module.this.enabled ? var.policies : {}

name = module.policy_label[each.key].id
Expand All @@ -63,7 +63,7 @@ module "policies" {

module "roles" {
source = "terraform-aws-modules/iam/aws//modules/iam-role"
version = "6.6.0"
version = "6.6.1"
for_each = module.this.enabled ? var.roles : {}

name = module.role_label[each.key].id
Expand Down
2 changes: 1 addition & 1 deletion infrastructure/modules/lambda/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ module "lambda_with_layers" {

| Name | Source | Version |
| ---- | ------ | ------- |
| <a name="module_lambda_function"></a> [lambda\_function](#module\_lambda\_function) | terraform-aws-modules/lambda/aws | 8.7.0 |
| <a name="module_lambda_function"></a> [lambda\_function](#module\_lambda\_function) | terraform-aws-modules/lambda/aws | 8.8.0 |
| <a name="module_this"></a> [this](#module\_this) | ../tags | n/a |

## Resources
Expand Down
2 changes: 1 addition & 1 deletion infrastructure/modules/lambda/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
module "lambda_function" {
source = "terraform-aws-modules/lambda/aws"
# downgrade version as workaround for bug https://github.com/terraform-aws-modules/terraform-aws-lambda/issues/733
version = "8.7.0"
version = "8.8.0"

function_name = local.function_name
description = var.function_description
Expand Down
2 changes: 1 addition & 1 deletion infrastructure/modules/s3-bucket/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ No providers.

| Name | Source | Version |
| ---- | ------ | ------- |
| <a name="module_s3_bucket"></a> [s3\_bucket](#module\_s3\_bucket) | terraform-aws-modules/s3-bucket/aws | 5.13.0 |
| <a name="module_s3_bucket"></a> [s3\_bucket](#module\_s3\_bucket) | terraform-aws-modules/s3-bucket/aws | 5.14.0 |
| <a name="module_this"></a> [this](#module\_this) | ../tags | n/a |

## Resources
Expand Down
2 changes: 1 addition & 1 deletion infrastructure/modules/s3-bucket/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

module "s3_bucket" {
source = "terraform-aws-modules/s3-bucket/aws"
version = "5.13.0"
version = "5.14.0"

create_bucket = module.this.enabled

Expand Down
Loading