Giter VIP home page Giter VIP logo

Comments (6)

ValeriyDP avatar ValeriyDP commented on May 22, 2024 1

For Googlers:

Error: Unsupported attribute
│ 
│   on ../../../modules/services/webserver-cluster/main.tf line 148, in data "template_file" "user_data":
│  148:     db_address = data.terraform_remote_state.db.outputs.address
│     ├────────────────
│     │ data.terraform_remote_state.db.outputs is object with no attributes
│ 
│ This object does not have an attribute named "address".
╵
╷
│ Error: Unsupported attribute
│ 
│   on ../../../modules/services/webserver-cluster/main.tf line 149, in data "template_file" "user_data":
│  149:     db_port = data.terraform_remote_state.db.outputs.port
│     ├────────────────
│     │ data.terraform_remote_state.db.outputs is object with no attributes
│ 
│ This object does not have an attribute named "port".

ch4/modules/services/data-stores/mysql/outputs.tf

output "address" {
  value = aws_db_instance.example.address
  description = "Connect to the database at this endpoint"
}

output "port" {
  value = aws_db_instance.example.port
  description = "The port the database is listening on"
}

ch4/stage/services/data-stores/mysql/outputs.tf

output "address" {
  value = module.data_stores.address
  description = "Connect to the database at this endpoint"
}

output "port" {
  value = module.data_stores.port
  description = "The port the database is listening on"
}

from terraform-up-and-running-code.

brikis98 avatar brikis98 commented on May 22, 2024

Not sure I fully understand! The database module has an outputs.tf in chapter 3... If you add a staging DB, you should of course copy that outputs.tf. Is there something in the book that is suggesting otherwise or misleading?

from terraform-up-and-running-code.

bkonicek avatar bkonicek commented on May 22, 2024

Thanks, I think the confusion I'm seeing is mostly based off of the fact that the database module was mentioned as a bonus exercise, and this chapter is mostly focused on the webserver_cluster module. I do see a mention of the environment-specific outputs.tf on page 122, but I don't recall reading anywhere that the module's outputs.tf should be copied into the environment's directory. Maybe for future editions just having a note somewhere around this section to keep in mind that the Terraform State won't include any module outputs unless they're also added to the environment outputs could be helpful?

from terraform-up-and-running-code.

brikis98 avatar brikis98 commented on May 22, 2024

Thx for the feedback!

I do see a mention of the environment-specific outputs.tf on page 122, but I don't recall reading anywhere that the module's outputs.tf should be copied into the environment's directory.

If you want to have outputs available in your state, you must add output variables, which, by convention, live in outputs.tf.

from terraform-up-and-running-code.

bkonicek avatar bkonicek commented on May 22, 2024

from terraform-up-and-running-code.

brikis98 avatar brikis98 commented on May 22, 2024

I believe this issue was resolved. Closing.

from terraform-up-and-running-code.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.