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
2 changes: 1 addition & 1 deletion aws-iam-account.tf
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ module "label_account_alias" {

module "iam_account" {
source = "terraform-aws-modules/iam/aws//modules/iam-account"
version = "5.60.0"
version = "6.2.3"

account_alias = module.label_account_alias.id

Expand Down
2 changes: 1 addition & 1 deletion aws-vpc.tf

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ [tflint] reported by reviewdog 🐶
List items should be accessed using square brackets

azs = var.network.subnets.*.az

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ [tflint] reported by reviewdog 🐶
List items should be accessed using square brackets

private_subnets = var.network.enable_private ? var.network.subnets.*.private : []

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ [tflint] reported by reviewdog 🐶
List items should be accessed using square brackets

public_subnets = var.network.subnets.*.public

Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ locals {

module "vpc_default" {
source = "terraform-aws-modules/vpc/aws"
version = "6.0.1"
version = "6.5.1"
create_vpc = true

name = module.label_network.id
Expand Down
Loading