Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

"Error in function call" when using neither private subnets nor NAT #944

Open
1 task done
cm-dk opened this issue Jun 1, 2023 · 13 comments
Open
1 task done

"Error in function call" when using neither private subnets nor NAT #944

cm-dk opened this issue Jun 1, 2023 · 13 comments
Labels
Milestone

Comments

@cm-dk
Copy link

cm-dk commented Jun 1, 2023

Description

TF errors out when trying to create a VPC with database subnets but no private subnets and no NAT gateways:
Call to function "coalescelist" failed: no non-null arguments.

It seems that the aws_route_table.private isn't created in this case (per count condition), but it is apparently meant to be referenced in aws_route_table_association.database.

  • ✋ I have searched the open/closed issues and my issue is not listed.

Versions

  • Module version [Required]: 5.0.0

  • Terraform version: 1.4.6

  • Provider version(s): 5.0.1

Reproduction Code [Required]

module "vpc" {
  source = "github.com/terraform-aws-modules/terraform-aws-vpc?ref=v5.0.0"

  name = "foo"
  cidr = "10.0.0.0/16"
  azs  = ["eu-central-1a", "eu-central-1b"]

  enable_dns_hostnames = true
  enable_dns_support   = true
  enable_nat_gateway   = false
  enable_ipv6          = false

  public_subnets = [ "10.0.0.0/24", "10.0.1.0/24" ]
  database_subnets = [ "10.0.10.0/24", "10.0.11.0/24" ]
  #private_subnets = [ "10.0.20.0/24", "10.0.21.0/24" ]
}

Expected behavior

No error.

Actual behavior

Error in function call (see below).

Terminal Output Screenshot(s)

│ Error: Error in function call
│ 
│   on .terraform/modules/vpc/main.tf line 410, in resource "aws_route_table_association" "database":
│  410:     coalescelist(aws_route_table.database[*].id, aws_route_table.private[*].id),
│     ├────────────────
│     │ while calling coalescelist(vals...)
│     │ aws_route_table.database is empty tuple
│     │ aws_route_table.private is empty tuple
│ 
│ Call to function "coalescelist" failed: no non-null arguments.

Additional context

This configuration worked fine with old version v3.2.0.

When patching the module's main.tf like this ...

 # There are as many routing tables as the number of NAT gateways
 resource "aws_route_table" "private" {
-  count = local.create_private_subnets && local.max_subnet_length > 0 ? local.nat_gateway_count : 0
+  count = local.create_private_subnets || local.max_subnet_length > 0 ? local.nat_gateway_count : 0

... it works correctly. I would submit a PR, but I don't understand the logic / intention well enough to be certain that this is a proper fix for all valid configuration options.

@bkdjt
Copy link
Sponsor

bkdjt commented Jun 6, 2023

I'm receiving the exact error as well albeit on version 4.0.2

@peikk0
Copy link

peikk0 commented Jun 19, 2023

Same here with v5.0.0

@marcinswigon
Copy link

I had the same issue. Moreover it does not happen when you run apply with -target set to a resource that uses database subnet (a missing dependency in output variables?).
Easiest way to deal with the issue in your own terraform code is to add following parameter to vpc module:

  create_database_subnet_route_table = True

@phene
Copy link

phene commented Jul 24, 2023

Easiest way to deal with the issue in your own terraform code is to add following parameter to vpc module:

I specifically don't want to enable create_database_subnet_route_table (temporarily, as part of a migration path) and I'm not creating private subnets yet.

@github-actions
Copy link

This issue has been automatically marked as stale because it has been open 30 days
with no activity. Remove stale label or comment or this issue will be closed in 10 days

@github-actions github-actions bot added the stale label Aug 24, 2023
@cm-dk
Copy link
Author

cm-dk commented Aug 24, 2023

Remove stale label or comment or this issue will be closed in 10 days

Not fixed, as far as I know, so it may be stale but should not be closed IMHO.

@github-actions github-actions bot removed the stale label Aug 25, 2023
@github-actions
Copy link

This issue has been automatically marked as stale because it has been open 30 days
with no activity. Remove stale label or comment or this issue will be closed in 10 days

@github-actions github-actions bot added the stale label Sep 24, 2023
@arunsisodiya
Copy link

Why there are no fixes provided for this ticket?
I am also facing this issue when migrating from v3 to v4 and further.

There should be mention of steps to take when migrating from v3 to v4. The problem with create_database_subnet_route_table option is that even after we make this true, Terraform is trying to delete the private route tables and routes.

So I have no idea how impactful this will be to delete the private route tables and use database route tables but in the end, I don't want to have anything like this being deleted during migration. :)

If anyone can provide a right fix for that, it will be awesome.

@github-actions github-actions bot removed the stale label Sep 26, 2023
@github-actions
Copy link

This issue has been automatically marked as stale because it has been open 30 days
with no activity. Remove stale label or comment or this issue will be closed in 10 days

@github-actions github-actions bot added the stale label Oct 26, 2023
@peikk0
Copy link

peikk0 commented Oct 26, 2023

Not stale, still waiting for a fix.

@github-actions github-actions bot removed the stale label Oct 27, 2023
@jaksonwkr
Copy link

I'm experiencing the same issue. I have create_database_subnet_route_table set to true but the problem persist.

@bryantbiggs bryantbiggs added this to the v6.0 milestone Nov 21, 2023
@AsoTora
Copy link

AsoTora commented Dec 12, 2023

+1 on this, tried to upgrade 3.19.0 -> 5.4.0, create_database_subnet_route_table = true was going to delete route tables, which was a no-go for me.

@MarioAhmad
Copy link

Is there any update on this? I'm trying to create a private subnet only but get the same issue.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

10 participants