-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
⭐️ new resource mondoo_integration_crowdstrike
Signed-off-by: Salim Afiune Maya <[email protected]>
- Loading branch information
Showing
9 changed files
with
460 additions
and
15 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
--- | ||
# generated by https://github.com/hashicorp/terraform-plugin-docs | ||
page_title: "mondoo_integration_crowdstrike Resource - terraform-provider-mondoo" | ||
subcategory: "" | ||
description: |- | ||
CrowdStrike Falcon for Cloud integration. | ||
--- | ||
|
||
# mondoo_integration_crowdstrike (Resource) | ||
|
||
CrowdStrike Falcon for Cloud integration. | ||
|
||
## Example Usage | ||
|
||
```terraform | ||
variable "client_id" { | ||
description = "The Client ID" | ||
type = string | ||
sensitive = true | ||
} | ||
variable "client_secret" { | ||
description = "The Client Secret" | ||
type = string | ||
sensitive = true | ||
} | ||
provider "mondoo" { | ||
space = "hungry-poet-123456" | ||
} | ||
# Setup the CrowdStrike integration | ||
resource "mondoo_integration_crowdstrike" "crowdstrike_integration" { | ||
Check warning on line 33 in docs/resources/integration_crowdstrike.md GitHub Actions / Run spell check
|
||
name = "CrowdStrike Integration" | ||
client_id = var.client_id | ||
client_secret = var.client_secret | ||
} | ||
``` | ||
|
||
<!-- schema generated by tfplugindocs --> | ||
## Schema | ||
|
||
### Required | ||
|
||
- `client_id` (String) Client ID used for authentication with CrowdStrike Falcon platform. | ||
- `client_secret` (String, Sensitive) Client Secret used for authentication with CrowdStrike Falcon platform. | ||
- `name` (String) Name of the integration. | ||
|
||
### Optional | ||
|
||
- `cloud` (String) The Falcon Cloud to connect. | ||
- `member_cid` (String) CID selector for cases when the client ID and secret has access to multiple CIDs. | ||
- `space_id` (String) Mondoo space identifier. If there is no space ID, the provider space is used. | ||
|
||
### Read-Only | ||
|
||
- `mrn` (String) Integration identifier |
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 |
---|---|---|
@@ -0,0 +1,9 @@ | ||
terraform { | ||
required_providers { | ||
mondoo = { | ||
source = "mondoohq/mondoo" | ||
version = ">= 0.19" | ||
} | ||
} | ||
} | ||
|
22 changes: 22 additions & 0 deletions
22
examples/resources/mondoo_integration_crowdstrike/resource.tf
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 |
---|---|---|
@@ -0,0 +1,22 @@ | ||
variable "client_id" { | ||
description = "The Client ID" | ||
type = string | ||
sensitive = true | ||
} | ||
|
||
variable "client_secret" { | ||
description = "The Client Secret" | ||
type = string | ||
sensitive = true | ||
} | ||
|
||
provider "mondoo" { | ||
space = "hungry-poet-123456" | ||
} | ||
|
||
# Setup the CrowdStrike integration | ||
resource "mondoo_integration_crowdstrike" "crowdstrike_integration" { | ||
name = "CrowdStrike Integration" | ||
client_id = var.client_id | ||
client_secret = var.client_secret | ||
} |
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.