Skip to content

Commit

Permalink
Updated documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
blakeneyops committed Mar 11, 2018
1 parent 78409f4 commit bd4bcec
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 0 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,15 @@
* full ipv6 support
* vpc endpoints

## 0.3.5 (March 11, 2018)

#### IMPROVEMENTS / NEW FEATURES:
* Updated CI configuration to more reliably handle Terraform / AWS timing issues.
* Added security group rule descriptions.

#### BUG FIXES:
* Updated az module to properly handle 0 private subnets.

## 0.3.4 (March 7, 2018)

#### BACKWARDS INCOMPATIBILITIES / NOTES:
Expand Down
2 changes: 2 additions & 0 deletions az/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -146,13 +146,15 @@ resource "aws_security_group" "sg_nat" {

egress {
cidr_blocks = ["0.0.0.0/0"]
description = "Egress to the Internet"
from_port = 0
protocol = "-1"
to_port = 0
}

ingress {
cidr_blocks = ["${local.lan_cidrs_override_enabled == "true" ? element(var.lan_cidrs_override,count.index) : cidrsubnet(data.aws_vpc.base.cidr_block,lookup(var.az_cidrsubnet_newbits, local.azs_provisioned_count * local.lans_multiplier),count.index + lookup(var.az_cidrsubnet_offset, local.azs_provisioned_count))}"]
description = "Ingress from ${var.stack_item_label}-lan-${count.index}"
from_port = 0
protocol = "-1"
to_port = 0
Expand Down

0 comments on commit bd4bcec

Please sign in to comment.