Skip to content

Commit

Permalink
🧹 add cloud to crowdstrike example
Browse files Browse the repository at this point in the history
Signed-off-by: Salim Afiune Maya <afiune@mondoo.com>
  • Loading branch information
afiune committed Jan 9, 2025
1 parent 94b9280 commit 71936b5
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 0 deletions.
6 changes: 6 additions & 0 deletions docs/resources/integration_crowdstrike.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,11 @@ variable "client_secret" {
sensitive = true
}
variable "cloud" {
description = "The Falcon Cloud to connect"
type = string
}
provider "mondoo" {
space = "hungry-poet-123456"
}
Expand All @@ -34,6 +39,7 @@ resource "mondoo_integration_crowdstrike" "crowdstrike_integration" {
name = "CrowdStrike Integration"
client_id = var.client_id
client_secret = var.client_secret
cloud = var.cloud
}
```

Expand Down
6 changes: 6 additions & 0 deletions examples/resources/mondoo_integration_crowdstrike/resource.tf
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,11 @@ variable "client_secret" {
sensitive = true
}

variable "cloud" {
description = "The Falcon Cloud to connect"
type = string
}

provider "mondoo" {
space = "hungry-poet-123456"
}
Expand All @@ -19,4 +24,5 @@ resource "mondoo_integration_crowdstrike" "crowdstrike_integration" {
name = "CrowdStrike Integration"
client_id = var.client_id
client_secret = var.client_secret
cloud = var.cloud
}

0 comments on commit 71936b5

Please sign in to comment.