Skip to content

Commit

Permalink
Added config source envvar
Browse files Browse the repository at this point in the history
  • Loading branch information
goruha committed Aug 1, 2017
1 parent 750a903 commit 2c364b9
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
6 changes: 6 additions & 0 deletions main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -611,6 +611,12 @@ resource "aws_elastic_beanstalk_environment" "default" {
value = "${var.name}"
}

setting {
namespace = "aws:elasticbeanstalk:application:environment"
name = "CONFIG_SOURCE"
value = "${var.config_source}"
}

setting {
namespace = "aws:elasticbeanstalk:managedactions"
name = "ManagedActionsEnabled"
Expand Down
5 changes: 4 additions & 1 deletion variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@ variable "loadbalancer_certificate_arn" {
default = ""
}


variable "zone_id" {
default = ""
}
Expand All @@ -31,6 +30,10 @@ variable "settings" {
default = ""
}

variable "config_source" {
default = ""
}

variable "security_groups" {
type = "list"
}
Expand Down

0 comments on commit 2c364b9

Please sign in to comment.