Skip to content

Commit

Permalink
0.2.0 -
Browse files Browse the repository at this point in the history
 [GH-1] aws flow log creation
 [GH-3] NATs are still allocated when 0 private subnets are selected
 Added support for optional CloudWatch auto recovery alarms on NAT instances
 Update examples
 Renamed Readme.md to README.md
 Updated terraform version for build
 Update licenses
  • Loading branch information
robertys10 committed Oct 30, 2015
1 parent b27262c commit afc2ff8
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 0 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

#### FEATURES:

# Added support for assigning Elastic IP address to each NAT instance.
* Added support for disabling the provisioning of NAT instances [GH-3]
* Added support for auto-recovery of NAT instances
* Added support for VPC flow logs [GH-1]
Expand Down
9 changes: 9 additions & 0 deletions az/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,15 @@ variable "lan_cidr" {}
variable "enable_dmz_public_ips" {
default = true
}
variable "nat_auto_recovery" {
default = "1"
}
variable "period" {
default = 60
}
variable "evaluation_periods" {
default = 2
}
variable "lans_per_az" {
default = 1
}
Expand Down
3 changes: 3 additions & 0 deletions examples/basic/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,9 @@ variable "lan_cidr" {
variable "lans_per_az" {
default = 1
}
variable "nat_auto_recovery" {
default = "1"
}
variable "lan_access_cidr" {
default = "10.10.2.0/23"
}
Expand Down
1 change: 1 addition & 0 deletions examples/full_stack/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -64,4 +64,5 @@ module "vpc_az" {
user_data_template = "${var.user_data_template}"
domain = "${var.domain_name}"
ssh_user = "${var.ssh_user}"
nat_auto_recovery = "${var.nat_auto_recovery}"
}
3 changes: 3 additions & 0 deletions examples/full_stack/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,9 @@ variable "lan_cidr" {
variable "lans_per_az" {
default = "1"
}
variable "nat_auto_recovery" {
default = "1"
}
variable "lan_access_cidr" {
default = "10.10.2.0/23"
}
Expand Down

0 comments on commit afc2ff8

Please sign in to comment.