Skip to content

Releases: cloudposse/terraform-aws-dynamic-subnets

0.3.7

05 Oct 20:48
Compare
Choose a tag to compare

what

  • Support use of tags by label modules

why

  • Interoperability with all modules

Migrate to README.yaml format

30 Jul 13:32
7503f54
Compare
Choose a tag to compare

what

  • Add README.yaml

why

  • Standardize README

0.3.5

14 May 14:46
Compare
Choose a tag to compare

what

  • Allows the ability to override the max number of subnets to create.

why

For some regions with many availability zones the amount of subnets gets extreme. This allows the ability to override the max number of subnets to create. Still defaults to all if nothing is supplied.

0.3.4

02 Apr 19:22
bb6d88f
Compare
Choose a tag to compare

what

  • Fix README
  • Fix make targets

why

  • Use standard README template
  • Use / instead of : in make targets

0.3.3

12 Jan 15:59
01b6735
Compare
Choose a tag to compare

what

  • Removed provider "aws"

why

  • Not necessary here, should be used in higher-level modules
  • Prevents inheriting provider settings from higher-level modules
  • Becomes an issue when testing locally if we use the AWS security keys like this (not the best practice, but people use it for testing):
provider "aws" {
  region     = "${var.region}"
  access_key = "XXXXXXXXXXXXX"
  secret_key = "XXXXXXXXXXXXX"
}

At the same time, this code in terraform-aws-dynamic-subnets:

provider "aws" {
  region = "${var.region}"
}

throws the error:
module.subnets.provider.aws: No valid credential sources found for AWS Provider.

0.3.2

09 Jan 18:41
Compare
Choose a tag to compare

what

  • Losen version constraint

why

0.3.1

31 Oct 02:36
Compare
Choose a tag to compare

Add Continuous Integration

what

  • Validate terraform code
  • Add build status badge

why

  • Improve code quality/consistency

0.3.0

31 Oct 02:33
Compare
Choose a tag to compare

Add Flag to Enable/Disable NAT Gateway

what

  • Permit NAT Gateway to be disabled

why

  • Sometimes only public subnets will be used. If that's the case, the NAT gateways do not provide any value and add additional cost.

0.2.3

22 Sep 15:38
Compare
Choose a tag to compare

what

  • Rename repo

why

Get the Internet Gateway attached to the VPC from AWS as a data source

23 Aug 17:11
Compare
Choose a tag to compare

Get the Internet Gateway attached to the VPC from AWS as a data source