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

Conditional expression assigned to local cannot be evaluated during plan #21450

Closed
woodrow opened this issue May 25, 2019 · 6 comments · Fixed by #21957
Closed

Conditional expression assigned to local cannot be evaluated during plan #21450

woodrow opened this issue May 25, 2019 · 6 comments · Fixed by #21957

Comments

@woodrow
Copy link

woodrow commented May 25, 2019

Terraform Version

Terraform v0.12.0
+ provider.aws v2.12.0

(I've also tried with Terraform v0.12.1-dev built from 2c176fd)

Terraform Configuration Files

Root module:

module "test_role" {
  source = "./modules/iam_role"
  role_name = "test_role"
}

module "test_role_with_inline" {
  source = "./modules/iam_role"
  role_name = "test_role_with_inline"
  inline_policy = {}
}

iam_role module:

variable "role_name" {
  type = string
}

variable "inline_policy" {
  default = null
}

locals {
  default_inline_policy = null
  inline_policy = var.inline_policy == null ? local.default_inline_policy : var.inline_policy
}

resource "aws_iam_role" "iam_role" {
  name = var.role_name
  assume_role_policy = jsonencode({})
}

resource "aws_iam_role_policy" "iam_role-inline" {
  name = "${aws_iam_role.iam_role.id}-inline"
  role = aws_iam_role.iam_role.id
  policy = jsonencode(local.inline_policy)
  count = local.inline_policy == null ? 0 : 1
}

Expected Behavior

Plan should have been able to evaluate the local variable, and succeed in generating a plan creating two aws_iam_role resources and one aws_iam_role_policy resource.

Actual Behavior

Error: Invalid count argument

  on modules/iam_role/main.tf line 15, in resource "aws_iam_role_policy" "iam_role-inline":
  15:   count = local.inline_policy == null ? 0 : 1

The "count" value depends on resource attributes that cannot be determined
until apply, so Terraform cannot predict how many instances will be created.
To work around this, use the -target argument to first apply only the
resources that the count depends on.

It appears that this local.inline_policy is (not yet known) during the plan process, even though it (AFAICT) has all of the information needed to evaluate that expression.

Steps to Reproduce

  1. git clone [email protected]:woodrow/terraform-21450-reproducer.git && cd terraform-21450-reproducer/reproducer-0.12
  2. terraform init
  3. terraform plan
@davidsuart
Copy link

I'm seeing this error as well but I can add a little extra circumstance ...

For me, it seems to be about count in a resource block being derived from a local variable. A data block does not suffer the same problem but if you then pipe an output from that data block into a subsequent resource block it triggers again.

Examples:

local value direct to data count, does not error, works fine:

locals {
  list_of_zone_ids = concat(module.zone.zone_ids)
}

data "aws_route53_zone" "zone_data" {
  count   = length(local.list_of_zone_ids)
  ...
}

... but run that data block as an input to a resource block then it will error:

resource "null_resource" "zone_meta" {
  count = length(data.aws_route53_zone.zone_data)
  ...
}

I'm using the same v0.12.0 as @woodrow.

Terraform v0.12.0
+ provider.aws v2.12.0
+ provider.null v2.1.2

@IvanovOleg
Copy link

count = "${local.test ? length(local.array) : 0}" doesn't work in 0.12

@symonds
Copy link

symonds commented Jun 10, 2019

count = "${var.sg_id != "" ? 1 : 0}"

Doesn't work in 0.12.1 and is blocking any progress

@tiwood
Copy link
Contributor

tiwood commented Jul 18, 2019

I'm on 0.12.4 and still have these issues:

locals {
  backendPoolType        = split("/", var.backend_address_pool_id)[17]
  )
}
resource "azurerm_network_interface_backend_address_pool_association" "lb_backend_pool" {
  network_interface_id    = azurerm_network_interface.default.id
  ip_configuration_name   = "if-ipconf-${local.name}"
  backend_address_pool_id = var.backend_address_pool_id

  // only if we detected a Azure Load Balancer Resource ID in the variable
  // backend_address_pool_id we're going to deploy this resource.
  count = local.backendPoolType == "loadBalancers" ? 1 : 0
}

resource "azurerm_network_interface_application_gateway_backend_address_pool_association" "appgw_backend_pool" {
  network_interface_id    = azurerm_network_interface.default.id
  ip_configuration_name   = "if-ipconf-${local.name}"
  backend_address_pool_id = var.backend_address_pool_id

  // only if we detected a Azure Application Gateway Resource ID in the variable
  // backend_address_pool_id we're going to deploy this resource.
  count = local.backendPoolType == "applicationGateways" ? 1 : 0
}

I'm getting the following errors:

Error: Invalid count argument

  on .terraform/modules/dns_vm/main.tf line 198, in resource "azurerm_network_interface_backend_address_pool_association" "lb_backend_pool":
 198:   count = local.backendPoolType == "loadBalancer" ? 1 : 0

The "count" value depends on resource attributes that cannot be determined
until apply, so Terraform cannot predict how many instances will be created.
To work around this, use the -target argument to first apply only the
resources that the count depends on.


Error: Invalid count argument

  on .terraform/modules/dns_vm/main.tf line 211, in resource "azurerm_network_interface_application_gateway_backend_address_pool_association" "appgw_backend_pool":
 211:   count = local.backendPoolType == "applicationGateways" ? 1 : 0

The "count" value depends on resource attributes that cannot be determined
until apply, so Terraform cannot predict how many instances will be created.
To work around this, use the -target argument to first apply only the
resources that the count depends on.

@jbardin am I missing something?

@jbardin
Copy link
Member

jbardin commented Jul 18, 2019

@tiwood,

Guessing from the name, is var.backend_address_pool_id an ID provided by another resource? If that's the case, then the error message: The "count" value depends on resource attributes that cannot be determined until apply is the applicable part here. Count values must be resolvable during the plan, otherwise terraform can't create a plan for the resources if it can't determine how many to create.

@ghost
Copy link

ghost commented Aug 3, 2019

I'm going to lock this issue because it has been closed for 30 days ⏳. This helps our maintainers find and focus on the active issues.

If you have found a problem that seems similar to this, please open a new issue and complete the issue template so we can capture all the details necessary to investigate further.

@ghost ghost locked and limited conversation to collaborators Aug 3, 2019
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Projects
None yet
Development

Successfully merging a pull request may close this issue.

7 participants