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

Commit

Permalink
add is_config_managed variable 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 65abc21 commit b664d8b
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
2 changes: 2 additions & 0 deletions sqs_autoscaling_service/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,8 @@ module "service" {
config_vars = "${var.config_vars}"
extra_vars = "${var.extra_vars}"

is_config_managed = "${var.is_config_managed}"

loadbalancer_cloudwatch_id = "${var.alb_cloudwatch_id}"
server_error_alarm_topic_arn = "${var.alb_server_error_alarm_arn}"
client_error_alarm_topic_arn = "${var.alb_client_error_alarm_arn}"
Expand Down
5 changes: 5 additions & 0 deletions sqs_autoscaling_service/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,11 @@ variable "config_vars" {
default = {}
}

variable "is_config_managed" {
description = "Flag to tell whether the config should be generated using templates and put in S3"
default = true
}

variable "build_env" {
default = "prod"
}
Expand Down

0 comments on commit b664d8b

Please sign in to comment.