GithubHelp home page GithubHelp logo

Comments (6)

omahonyb avatar omahonyb commented on May 27, 2024 1

I am just wondering how to get that out as part of the user data:

#!/bin/bash
#Set hostname
hostnamectl set-hostname ${lookup(module.ec2_bastion.tags[count.index], "Name")}
#Setup Chrony to point at AWS
sed -i '/^server [1-3]/d' /etc/chrony.conf
sed -i 's/0.centos.pool.ntp.org iburst/169.254.169.123 prefer iburst minpoll 4 maxpoll 4/g' /etc/chrony.conf
systemctl restart chronyd
EOF

I get the error "Error: module "ec2_bastion": count variables are only valid within resources"

from terraform-aws-ec2-instance.

antonbabenko avatar antonbabenko commented on May 27, 2024

Tags are outputs from this module and can be referenced as module.my_ec2.tags where my_ec2 is the module name. The output looks like this:

tags = [
  {
    "Env" = "Private"
    "Location" = "Secret"
    "Name" = "example-normal-1"
  },
  {
    "Env" = "Private"
    "Location" = "Secret"
    "Name" = "example-normal-2"
  },
]

There are other outputs as lists you can use to identify instance ids or IPs.

from terraform-aws-ec2-instance.

bryantbiggs avatar bryantbiggs commented on May 27, 2024

hi @omahonyb, you can do one of two routes:

  1. Within your user_data script you can query the metadata endpoint API and get the hostname dynamically: curl http://169.254.169.254/latest/meta-data/hostname

  2. You can inject the name into your user_data script during deployment. To do this, create a local file called something like userdata.sh with the following contents:

#!/bin/bash
# Set hostname
hostnamectl set-hostname ${hostname}
# Setup Chrony to point at AWS
sed -i '/^server [1-3]/d' /etc/chrony.conf
sed -i 's/0.centos.pool.ntp.org iburst/169.254.169.123 prefer iburst minpoll 4 maxpoll 4/g' /etc/chrony.conf
systemctl restart chronyd

Then in the code for your instance(s) you can add:

module "ec2" {
  source = "../../"

  instance_count = 1

  name          = "example-normal"
  ami           = data.aws_ami.amazon_linux.id
  instance_type = "c5.large"
  subnet_id     = tolist(data.aws_subnet_ids.all.ids)[0]

  vpc_security_group_ids      = [module.security_group.this_security_group_id]
  associate_public_ip_address = true
  placement_group             = aws_placement_group.web.id

  user_data_base64 = base64encode(templatefile("${path.module}/userdata.sh", {
    hostname = "example-normal"
  }))

Note - this approach has a flaw if the instance count is greater than 1 and the use_num_suffix value is true as the name is dynamically generated and will not be injected correctly to your user_data

from terraform-aws-ec2-instance.

kclinden avatar kclinden commented on May 27, 2024

@bryantbiggs - Anyway to get that 2nd option to work with userdata and multiple instances? It is possible to access the count variable?

from terraform-aws-ec2-instance.

antonbabenko avatar antonbabenko commented on May 27, 2024

Closing this issue. v3.0.0 (released today) has better support for handling instance names as part of the module.

from terraform-aws-ec2-instance.

github-actions avatar github-actions commented on May 27, 2024

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.

from terraform-aws-ec2-instance.

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.