Skip to content

Releases: cloudposse/terraform-aws-vpc

0.11.0

17 Jun 16:34
7b10cfb
Compare
Choose a tag to compare
Updates for GH ChatOps > CodeFresh (#55)

0.10.0 Support the environment attribute

25 Mar 21:52
5bd0451
Compare
Choose a tag to compare

what

  • Added support for the environment attribute that has been added to terraform-null-label

why

  • Cause this module should stay in-line with terraform-null-label

0.9.0 Allow to not update default security group

26 Feb 02:46
1eb5665
Compare
Choose a tag to compare

what

  • Allow to not update default security group

why

  • it is useful to allow to not to update the default security group removing defaults inbound and outbound rules

0.8.1 Remove unused "region" variable from docs

25 Oct 15:39
Compare
Choose a tag to compare

what

  • Remove usage of the region variable from documentation

why

  • Historically region may have been a variable that could be passed to the module, but currently it no longer is

0.8.0: Address CIS-VpcDefaultSecurityGroupsMustRestrictAllTraffic (#40)

20 Aug 19:10
d16f786
Compare
Choose a tag to compare

What

  • Explicit declare aws_default_security_group without any security_group_rule

Why

  • Address CIS-VpcDefaultSecurityGroupsMustRestrictAllTraffic
  • If aws_default_security_group is not defined, it would be created implicitly with access 0.0.0.0/0

0.4.2 Address CIS-VpcDefaultSecurityGroupsMustRestrictAllTraffic

12 Aug 15:01
b9ef192
Compare
Choose a tag to compare

What

  • Disable all inbound for the default VPC security group

Why

  • Address CIS-VpcDefaultSecurityGroupsMustRestrictAllTraffic

0.7.0 Properly pin providers

28 Jun 22:02
192b793
Compare
Choose a tag to compare

what

  • Properly pin providers in the example

why

  • We don't use providers block to send providers to modules
  • Use required_providers in terraform block to pin provider versions

and

provider "aws" {
  region = var.region
}

in top-level modules/examples to specify the region

0.6.0 Use `required_providers` to pin Terraform providers

25 Jun 00:02
e85e12a
Compare
Choose a tag to compare

what

  • Use required_providers to pin Terraform providers

why

  • Pinning the module's providers versions in required_providers block allows specifying only the required provider version for the module without the need to specify all providers with versions explicitly

0.5.1 Correctly pin `aws` provider

21 Jun 17:54
b02d77d
Compare
Choose a tag to compare

what

  • Correctly pin aws provider

why

  • Allow any non-beta version >= 2.0.0 and < 3.0.0, e.g. 2.X.Y

references

0.5.0 Upgrade to Terraform 0.12

21 Jun 17:38
7e24feb
Compare
Choose a tag to compare

what

  • Port (rewrite) module with 0.12 syntax
  • Update Codefresh badge to point to the test pipeline in terraform-modules project
  • Update examples
  • Update README
  • Update README examples

why

  • Module currently does not work with 0.12
  • Much easier syntax
  • terraform-modules project contains pipelines for all terraform modules