Skip to content

Commit

Permalink
Enable ad feature flag (SumoLogic#74)
Browse files Browse the repository at this point in the history
* Remove hard coded enable_ad

* Enable ad

* Format
  • Loading branch information
melmaliacone committed Aug 26, 2020
1 parent 4948805 commit 68c9f74
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 6 deletions.
4 changes: 2 additions & 2 deletions modules/collector/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,6 @@ variable "env" {
}

variable "enable_ad" {
type = bool
default = false
type = bool
default = true
}
2 changes: 1 addition & 1 deletion modules/role/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -40,5 +40,5 @@ variable "ad_oudn" {

variable "enable_ad" {
type = bool
default = false
default = true
}
5 changes: 2 additions & 3 deletions terraform/collectors.tf
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,8 @@ module "dv-test" {
module "nytimes-dv-sumologic" {
source = "../modules/collector"

name = "nytimes/dv-sumologic"
env = var.env
enable_ad = false
name = "nytimes/dv-sumologic"
env = var.env
}

module "nytimes-spg-petstore" {
Expand Down

0 comments on commit 68c9f74

Please sign in to comment.