Skip to content
Merged
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-billing-budgets.tf
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module "label_monthly_total" {
source = "bendoerr-terraform-modules/label/null"
version = "0.4.2"
version = "0.5.0"
context = var.context
name = "budget-monthly-total"
}
Expand Down
4 changes: 2 additions & 2 deletions aws-iam-account.tf
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
module "label_account_alias" {
source = "bendoerr-terraform-modules/label/null"
version = "0.4.2"
version = "0.5.0"
context = var.context
name = var.iam_alias_postfix
}

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

account_alias = module.label_account_alias.id

Expand Down
4 changes: 2 additions & 2 deletions aws-vpc.tf
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module "label_network" {
source = "bendoerr-terraform-modules/label/null"
version = "0.4.2"
version = "0.5.0"
context = var.context
name = "ntwrk"
}
Expand All @@ -11,16 +11,16 @@

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

name = module.label_network.id
tags = local.network_nameless_tags

cidr = var.network.cidr
azs = var.network.subnets.*.az

Check warning on line 21 in aws-vpc.tf

View workflow job for this annotation

GitHub Actions / tflint

[tflint] reported by reviewdog 🐶 List items should be accessed using square brackets Raw Output: aws-vpc.tf:21:40: warning: List items should be accessed using square brackets ()
public_subnets = var.network.subnets.*.public

Check warning on line 22 in aws-vpc.tf

View workflow job for this annotation

GitHub Actions / tflint

[tflint] reported by reviewdog 🐶 List items should be accessed using square brackets Raw Output: aws-vpc.tf:22:40: warning: List items should be accessed using square brackets ()
private_subnets = var.network.enable_private ? var.network.subnets.*.private : []

Check warning on line 23 in aws-vpc.tf

View workflow job for this annotation

GitHub Actions / tflint

[tflint] reported by reviewdog 🐶 List items should be accessed using square brackets Raw Output: aws-vpc.tf:23:69: warning: List items should be accessed using square brackets ()

public_subnet_suffix = "public"
private_subnet_suffix = "private"
Expand Down
Loading