Skip to content

Commit

Permalink
Made the Member CID within Crowdstrike's connector Optional
Browse files Browse the repository at this point in the history
  • Loading branch information
SteveMcGrath committed Jan 21, 2025
1 parent 6094ff4 commit 11903ff
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,6 @@ __pycache__
.vars
.secrets
.vars
.vagrant
requirements.txt
/build.sh
5 changes: 3 additions & 2 deletions connectors/crowdstrike2tone/connector.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,11 @@
import logging
from typing import Annotated

from crowdstrike.transform import Transformer
from pydantic import AnyHttpUrl, Field, SecretStr
from tenint import Connector, Credential, Settings, TenableVMCredential

from crowdstrike.transform import Transformer


class CrowdstrikeCredential(Credential):
"""
Expand All @@ -18,7 +19,7 @@ class CrowdstrikeCredential(Credential):
description: str = 'Crowdstrike API Credential'
client_id: str
client_secret: SecretStr
member_cid: str
member_cid: str | None = None
url: AnyHttpUrl


Expand Down
2 changes: 1 addition & 1 deletion connectors/crowdstrike2tone/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "crowdstrike2tone"
version = "0.9.2"
version = "0.9.3"
description = "Crowdstrike -> Tenable One"
readme = "README.md"
requires-python = ">=3.12"
Expand Down

0 comments on commit 11903ff

Please sign in to comment.