-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #12 from unifio/0.6.14_enhancements
0.2.0 Module release
- Loading branch information
Showing
24 changed files
with
277 additions
and
493 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
2.3.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,3 @@ | ||
source "http://rubygems.org" | ||
|
||
ruby '2.2.3' | ||
|
||
gem "rake" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,49 +1,47 @@ | ||
# Input variables | ||
|
||
## Resource tags | ||
variable "stack_item_label" {} | ||
variable "stack_item_fullname" {} | ||
variable "stack_item_label" { | ||
type = "string" | ||
description = "Short form identifier for this stack. This value is used to create the 'Name' resource tag for resources created by this stack item, and also serves as a unique key for re-use." | ||
} | ||
variable "stack_item_fullname" { | ||
type = "string" | ||
description = "Long form descriptive name for this stack item. This value is used to create the 'application' resource tag for resources created by this stack item." | ||
} | ||
|
||
## VPC parameters | ||
variable "vpc_id" {} | ||
variable "region" {} | ||
variable "az" {} | ||
variable "dmz_cidr" {} | ||
variable "lan_cidr" {} | ||
variable "enable_dmz_public_ips" { | ||
default = true | ||
variable "vpc_id" { | ||
type = "string" | ||
description = "The ID of the VPC" | ||
} | ||
variable "lans_per_az" { | ||
default = 1 | ||
variable "region" { | ||
type = "string" | ||
description = "The AWS region" | ||
} | ||
variable "rt_dmz_id" {} | ||
|
||
## NAT parameters | ||
variable "user_data" {} | ||
variable "ami" {} | ||
variable "instance_type" {} | ||
variable "key_name" {} | ||
variable "nat_sg_id" {} | ||
variable "enable_nats" { | ||
default = "true" | ||
variable "az" { | ||
type = "string" | ||
description = "Availability zone(s). Will accept a comma delimited string." | ||
} | ||
variable "enable_nat_auto_recovery" { | ||
default = "false" | ||
variable "dmz_cidr" { | ||
type = "string" | ||
description = "The CIDR block(s) you want the DMZ subnet(s) to cover. Will accept a comma delimited string." | ||
} | ||
variable "period" { | ||
default = 60 | ||
variable "lan_cidr" { | ||
type = "string" | ||
description = "The CIDR block(s) you want the LAN subnet(s) to cover. Will accept a comma delimited string." | ||
} | ||
variable "evaluation_periods" { | ||
default = 2 | ||
variable "lans_per_az" { | ||
type = "string" | ||
description = "The number of private LAN subnets to be provisioned per AZ" | ||
default = 1 | ||
} | ||
variable "enable_nat_eip" { | ||
default = "false" | ||
variable "enable_dmz_public_ips" { | ||
type = "string" | ||
description = "Specify true to indicate that instances launched into the DMZ subnet should be assigned a public IP address" | ||
default = true | ||
} | ||
|
||
# Internal variables | ||
variable "decision_tree" { | ||
default = { | ||
"false" = 0 | ||
"true" = 1 | ||
} | ||
variable "rt_dmz_id" { | ||
type = "string" | ||
description = "The ID of the DMZ routing table" | ||
} |
Oops, something went wrong.