terraform-aws-documentdb-cluster icon indicating copy to clipboard operation
terraform-aws-documentdb-cluster copied to clipboard

Invalid count argument when password provide using random_password

Open rajesh6752 opened this issue 2 years ago • 1 comments
trafficstars

Describe the Bug

╷ │ Error: Invalid count argument │ │ on .terraform/modules/ac2ui_documentdb_cluster/main.tf line 43, in resource "random_password" "password": │ 43: count = module.this.enabled && var.master_password != "" ? 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.

Expected Behavior

Terraform plan should be applied without this issue.

Steps to Reproduce

set password to the value of an ssm param, for example:

resource "random_password" "ac2ui_master_password" {
  length  = 8
  special = false
}
master_password  =  random_password.master_password.result

Screenshots

No response

Environment

No response

Additional Context

No response

rajesh6752 avatar Oct 19 '23 16:10 rajesh6752

I have the same issue.

lays147 avatar Nov 16 '23 14:11 lays147