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

Commit b664d8b

Browse files
author
Robert Kenny
committed
add is_config_managed variable to sqs_autoscaling_service
1 parent 65abc21 commit b664d8b

File tree

2 files changed

+7
-0
lines changed

2 files changed

+7
-0
lines changed

sqs_autoscaling_service/main.tf

+2
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,8 @@ module "service" {
5353
config_vars = "${var.config_vars}"
5454
extra_vars = "${var.extra_vars}"
5555

56+
is_config_managed = "${var.is_config_managed}"
57+
5658
loadbalancer_cloudwatch_id = "${var.alb_cloudwatch_id}"
5759
server_error_alarm_topic_arn = "${var.alb_server_error_alarm_arn}"
5860
client_error_alarm_topic_arn = "${var.alb_client_error_alarm_arn}"

sqs_autoscaling_service/variables.tf

+5
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,11 @@ variable "config_vars" {
3434
default = {}
3535
}
3636

37+
variable "is_config_managed" {
38+
description = "Flag to tell whether the config should be generated using templates and put in S3"
39+
default = true
40+
}
41+
3742
variable "build_env" {
3843
default = "prod"
3944
}

0 commit comments

Comments
 (0)