Code Monkey home page Code Monkey logo

Comments (7)

brikis98 avatar brikis98 commented on June 11, 2024

What is the actual error you're getting?

Also, could you use proper syntax highlighting so your code is a bit more readable? That is, wrap your code with three backticks and fix the indentation? It's especially important in this case, as a common source of User Data errors is whitespace.

from terraform-up-and-running-code.

TravelingLex avatar TravelingLex commented on June 11, 2024

Sorry about that, I've made the code more readable. I was able to get the webservers to deploy and moved on to creating the user-data.sh file. I'm once again running into the issue. Here is my terraform for the launch config:

resource "aws_launch_configuration" "example" {
    image_id = "${var.web_image_id}"
    instance_type = "t2.micro"
    security_groups = ["${aws_security_group.instance.id}"]
    user_data = "${data.template_file.user_data.rendered}"

    lifecycle {
        create_before_destroy = true
    }
}

And my user-data.sh file:

 #!/bin/bash

cat > index.html <<-EOF
    <h1>Hello, World</h1>
    <p>DB address: ${db_address}</p>
    <p>DB port: ${db_port}</p>
EOF

nohup busybox httpd -f -p ${server_port} &

And my data read file:

data "template_file" "user_data" {
    template = "${file("user-data.sh")}"

    vars {
        server_port = "${var.server_port}"
        db_address  = "${data.terraform_remote_state.db.address}"
        db_port     = "${data.terraform_remote_state.db.port}"
    }
}

from terraform-up-and-running-code.

TravelingLex avatar TravelingLex commented on June 11, 2024

Looks like this might be related to me running Terraform 0.12. They updated the templatefile function.

from terraform-up-and-running-code.

brikis98 avatar brikis98 commented on June 11, 2024

If you're using 0.12, you'll need the 2nd edition of the book (early release will be out in 1-2 weeks) and the 2nd-edition branch: https://github.com/brikis98/terraform-up-and-running-code/tree/2nd-edition

from terraform-up-and-running-code.

TravelingLex avatar TravelingLex commented on June 11, 2024

Sorry on Terraform v0.11.7

  • provider.aws v2.14.0
  • provider.template v2.1.2

from terraform-up-and-running-code.

brikis98 avatar brikis98 commented on June 11, 2024

And what is the actual problem you're seeing?

from terraform-up-and-running-code.

TravelingLex avatar TravelingLex commented on June 11, 2024

I was able to resolve the issue. It was related to my user-data.sh file, I ended up putting a "-" at <<-EOF and it worked (Granted it took over 30 minutes before the systems were available).

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.