Skip to content

Commit

Permalink
Add a collector nytimes/dv-sumologic (SumoLogic#55)
Browse files Browse the repository at this point in the history
* Update collectors.tf

* Update collectors.tf

* Update output.tf

* fmt

* Update collectors.tf
  • Loading branch information
mlclmj committed Aug 17, 2020
1 parent 0bb5dfa commit 6cbfcd5
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 0 deletions.
7 changes: 7 additions & 0 deletions terraform/collectors.tf
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,13 @@ module "dv-test" {
env = var.env
}

module "nytimes-dv-sumologic" {
source = "../modules/collector"

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

module "nytimes-spg-petstore" {
source = "../modules/collector"

Expand Down
12 changes: 12 additions & 0 deletions terraform/output.tf
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,18 @@ output "dv-test-source-category" {
description = "HTTP endpoints and sourceCategory created for the dv-test collector"
}

# nytimes-dv-sumologic
output "nytimes-dv-sumologic-endpoints" {
value = module.nytimes-dv-sumologic.http_endpoints
description = "HTTP endpoints and sourceCategory created for the dv-test collector"
}

output "nytimes-dv-sumologic-source-category" {
value = module.nytimes-dv-sumologic.source_category
description = "HTTP endpoints and sourceCategory created for the dv-test collector"
}


# nytimes-spg-petstore
output "nytimes-spg-petstore-endpoints" {
value = module.nytimes-spg-petstore.http_endpoints
Expand Down

0 comments on commit 6cbfcd5

Please sign in to comment.