-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' of github.com:turbot/flowpipe-samples into add_ne…
…w_user
- Loading branch information
Showing
27 changed files
with
87 additions
and
154 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,27 +1,19 @@ | ||
variable "apivoid_api_key" { | ||
type = string | ||
description = "API key to authenticate requests with APIVoid." | ||
# TODO: Add once supported | ||
# sensitive = true | ||
} | ||
|
||
variable "ip2location_api_key" { | ||
type = string | ||
description = "API key to authenticate requests with IP2Location." | ||
# TODO: Add once supported | ||
# sensitive = true | ||
} | ||
|
||
variable "urlscan_api_key" { | ||
type = string | ||
description = "API key to authenticate requests with Urlscan." | ||
# TODO: Add once supported | ||
# sensitive = true | ||
} | ||
|
||
variable "virustotal_api_key" { | ||
type = string | ||
description = "API key to authenticate requests with VirusTotal." | ||
# TODO: Add once supported | ||
# sensitive = true | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,9 @@ | ||
variable "abuseipdb_api_key" { | ||
type = string | ||
description = "API key to authenticate requests with AbuseIPDB." | ||
# TODO: Add once supported | ||
# sensitive = true | ||
} | ||
|
||
variable "virustotal_api_key" { | ||
type = string | ||
description = "API key to authenticate requests with VirusTotal." | ||
# TODO: Add once supported | ||
# sensitive = true | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,55 +1,39 @@ | ||
variable "abuseipdb_api_key" { | ||
type = string | ||
description = "API key to authenticate requests with AbuseIPDB." | ||
# TODO: Add once supported | ||
# sensitive = true | ||
} | ||
|
||
variable "apivoid_api_key" { | ||
type = string | ||
description = "API key to authenticate requests with APIVoid." | ||
# TODO: Add once supported | ||
# sensitive = true | ||
} | ||
|
||
variable "ip2location_api_key" { | ||
type = string | ||
description = "API key to authenticate requests with IP2Location." | ||
# TODO: Add once supported | ||
# sensitive = true | ||
} | ||
|
||
variable "urlscan_api_key" { | ||
type = string | ||
description = "API key to authenticate requests with Urlscan." | ||
# TODO: Add once supported | ||
# sensitive = true | ||
} | ||
|
||
variable "virustotal_api_key" { | ||
type = string | ||
description = "API key to authenticate requests with VirusTotal." | ||
# TODO: Add once supported | ||
# sensitive = true | ||
} | ||
|
||
variable "hunter_api_key" { | ||
type = string | ||
description = "API key to authenticate requests with Hunter." | ||
# TODO: Add once supported | ||
# sensitive = true | ||
} | ||
|
||
variable "kickbox_api_key" { | ||
type = string | ||
description = "API key to authenticate requests with Kickbox." | ||
# TODO: Add once supported | ||
# sensitive = true | ||
} | ||
|
||
variable "hybrid_analysis_api_key" { | ||
type = string | ||
description = "API key to authenticate requests with Hybrid Analysis." | ||
# TODO: Add once supported | ||
# sensitive = true | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,31 +1,19 @@ | ||
variable "pagerduty_api_token" { | ||
type = string | ||
description = "PagerDuty API token used for authentication, e.g., `y_NbAkKc66ryYTWUXYEu`." | ||
// TODO: Add once supported | ||
// sensitive = true | ||
default = "" | ||
} | ||
|
||
variable "slack_api_token" { | ||
type = string | ||
description = "Slack app token used to authenticate to your Slack workspace." | ||
// TODO: Add once supported | ||
// sensitive = true | ||
default = "" | ||
} | ||
|
||
variable "slack_channel" { | ||
type = string | ||
description = "Encoded ID or name of the Slack channel to send the message. Encoded ID is recommended. Examples: C1234567890, general, random" | ||
# TODO: Add once supported | ||
#sensitive = true | ||
default = "" | ||
} | ||
|
||
variable "sendgrid_api_key" { | ||
type = string | ||
description = "The SendGrid access api_key to authenticate to the OpenAI APIs, e.g., `SG.ABCDEFGHIJ-a1b2c3d4e5f6g7h8i9j10k11l12m13n14o15p16q17r18s19t20u21v`." | ||
// TODO: Add once supported | ||
// sensitive = true | ||
default = "" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
slack_channel ="test-channel" | ||
slack_token ="xoxp-12345-67890" | ||
slack_channel = "test-channel" | ||
slack_token = "xoxp-12345-67890" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.