Skip to content
This repository has been archived by the owner on Feb 11, 2020. It is now read-only.

Commit

Permalink
add extra vars to sqs_autoscaling_service
Browse files Browse the repository at this point in the history
  • Loading branch information
Robert Kenny committed Dec 13, 2017
1 parent 4afa6dc commit 9acf12b
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
1 change: 1 addition & 0 deletions sqs_autoscaling_service/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@ module "service" {
deployment_maximum_percent = "200"

config_vars = "${var.config_vars}"
extra_vars = "${var.extra_vars}"

loadbalancer_cloudwatch_id = "${var.alb_cloudwatch_id}"
server_error_alarm_topic_arn = "${var.alb_server_error_alarm_arn}"
Expand Down
6 changes: 6 additions & 0 deletions sqs_autoscaling_service/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,12 @@ variable "memory" {
default = 1024
}

variable "extra_vars" {
description = "Environment variables to pass to the container"
type = "list"
default = []
}

variable "config_vars" {
type = "map"
}
Expand Down

0 comments on commit 9acf12b

Please sign in to comment.