Skip to content

Commit af52c07

Browse files
authored
Merge pull request #38 from OpsLevel/db/add-integration-custom-event-check-module
add integration module for custom event check
2 parents cb57b70 + ae977ed commit af52c07

File tree

4 files changed

+17
-0
lines changed

4 files changed

+17
-0
lines changed
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
resource "opslevel_integration_custom_event_check" "this" {
2+
name = var.name
3+
type = var.type
4+
}
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
output "this" {
2+
value = opslevel_integration_custom_event_check.this
3+
}
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
variable "name" {
2+
type = string
3+
description = "The name of the integration."
4+
}
5+
6+
variable "type" {
7+
type = string
8+
description = "The type of the custom event check integration."
9+
}
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
../../versions.tf

0 commit comments

Comments
 (0)