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

Chapter 5 #98

Open
adeomisor opened this issue Mar 5, 2023 · 1 comment
Open

Chapter 5 #98

adeomisor opened this issue Mar 5, 2023 · 1 comment
Labels

Comments

@adeomisor
Copy link

Loops with for_each expression

When I run Terraform plan or apply for the the code under the for_each expreseion,

I get the error:

image

An input variable with the name "user_names" has not been declared. Did you mean "user_name"?

I have cross -referenced with the exact code on the repository and it is the same thing.

See my module for excerpts form my live/global/iam-user:

module "users" {
source = "../../../modules/landing-zone/iam-user"

for_each  = toset(var.user_names)
user_name = each.value

}

See excerpts from my modele:

terraform {
required_version = ">= 1.0.0, < 2.0.0"

required_providers {
    aws = {
        source  = "hashicorp/aws"
        version = "~> 4.0"
    }
}

}

resource "aws_iam_user" "example" {
name = var.user_name
}

Please assist.

@brikis98
Copy link
Owner

brikis98 commented Mar 7, 2023

Which example are you looking at? Is it this one? If so, user_names is declared right here.

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

2 participants