Skip to content

Releases: cloudposse/terraform-aws-ec2-instance

0.9.0 Remove `network_interface_id` output

14 Mar 19:11
3aa4b45
Compare
Choose a tag to compare

what

  • Remove network_interface_id output

why

0.8.0 Use `owners` with `data.aws_ami.info`

28 Feb 22:32
Compare
Choose a tag to compare

what

  • Use owners with data.aws_ami.info

why

  • The latest terraform-aws-provider appears to require this, either supply it in case we're using the default AMI, or allow the user to provide it

0.7.6 Update readme yaml file and rebuild md

06 Dec 13:22
4257315
Compare
Choose a tag to compare

what

  • updated README.yaml file
  • add tags and categories
  • rebuild README.md file

why

  • need to add categories and tags so we can pull them into the documentation

Regenerate README.md

27 Jul 14:09
3e87525
Compare
Choose a tag to compare

what

  • Regenerate README.md

why

  • Previous version of build-harness has some typos

Migrate to README.yaml format

12 Jul 08:15
e09deb9
Compare
Choose a tag to compare

what

  • Add README.yaml

why

  • Standardize README

0.7.3

11 Jun 19:22
Compare
Choose a tag to compare

what

Update Ubuntu default version to Bionic

why

It's the newest Ubuntu LTS version

0.7.2

11 Jun 19:20
Compare
Choose a tag to compare

what

  • Remove map from the tags

why

  • maps in dynamically calculated counts introduce circular dependencies across TF modules

references

hashicorp/terraform#13980
hashicorp/terraform#10857
hashicorp/terraform#12570
hashicorp/terraform#17048

I know this issue has been discussed time and again (Ex: #12570) and that if a module has a map variable and has interpolation inside this map variable, count inside a module results in value of ‘count’ cannot be computed. What puzzles me is that this error occurs when terraforming a new environment but not any existing environment!

0.7.1

04 Jun 01:57
Compare
Choose a tag to compare

What

  • Fix outputs
  • Update README

Why

  • Use splat+join pattern for outputs from the modules with counts

0.7.0

13 Dec 17:35
b5ded90
Compare
Choose a tag to compare

Allow associating a public IP to the instance without assigning an Elastic IP

what

  • Allow associating a public IP to the instance without assigning an Elastic IP

why

  • To separately control public and Elastic IPs
  • A public IP could be associated to the instance without assigning an Elastic IP

0.6.1

12 Dec 19:35
7f393e7
Compare
Choose a tag to compare

Use string comparison for booleans

what

  • Use string comparison for booleans

why

  • Terraform does not work correctly with boolean values
  • Using strings instead of booleans is recommended