Skip to content

Commit

Permalink
Updates example terraform
Browse files Browse the repository at this point in the history
  • Loading branch information
Gowiem committed May 25, 2020
1 parent c5e9c2b commit a1d3ee0
Show file tree
Hide file tree
Showing 4 changed files with 24 additions and 1 deletion.
8 changes: 8 additions & 0 deletions example/complete/.editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
root = true

[*]
indent_style = space
indent_size = 2
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = false
File renamed without changes.
15 changes: 15 additions & 0 deletions example/complete/outputs.tf
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
output "private_subnet_ids" {
value = module.subnets.private_subnet_ids
}

output "default_security_group_id" {
value = module.vpc.vpc_default_security_group_id
}

output "cluster_name" {
value = module.label.id
}

output "task_definition_name" {
value = module.label.id
}
2 changes: 1 addition & 1 deletion example/complete/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ variable "availability_zones" {
}

variable "nat_gateway_enabled" {
default = true
default = false
type = bool
description = "Whether to enable NAT Gateways. If false, then the application uses NAT Instances, which are much cheaper."
}

0 comments on commit a1d3ee0

Please sign in to comment.