Skip to content

Commit

Permalink
Make app_server_key_pair_name optional and add description for app_se…
Browse files Browse the repository at this point in the history
…rver_instance_type (#3115)
  • Loading branch information
hackdna committed Nov 15, 2018
1 parent 4b4db8b commit 214a8fb
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions deployment/terraform/live/vars.tf
Original file line number Diff line number Diff line change
Expand Up @@ -63,11 +63,13 @@ variable "rds_master_user_password" {
}

variable "app_server_instance_type" {
default = "m3.medium"
description = "EC2 instance type of the main host"
default = "m3.medium"
}

variable "app_server_key_pair_name" {
description = "Name of the key pair to use for the app server instance"
description = "Name of the SSH key pair to use for the app server instance"
default = ""
}

variable "app_server_ssh_users" {
Expand Down

0 comments on commit 214a8fb

Please sign in to comment.