Skip to content

Commit dcab2a6

Browse files
committed
Add US-3 region to credential setup documentation
The auth module already accepts any base_url, so US-3 works mechanically; this documents it so users know the host. Adds the US-3 base URL (api.us-3.crowdstrike.com) to the setup skill's multi-cloud profile examples and the README region notes, alongside a US-GOV-1 example that was also missing. Base URLs match the FalconPy BaseURL enum.
1 parent 4ed963d commit dcab2a6

2 files changed

Lines changed: 12 additions & 1 deletion

File tree

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,7 @@ For CI or a one-off override, set environment variables instead:
6262
export FALCON_CLIENT_ID=your_client_id_here
6363
export FALCON_CLIENT_SECRET=your_client_secret_here
6464
# export FALCON_BASE_URL=https://api.crowdstrike.com # US-1 (default)
65+
# US-2: https://api.us-2.crowdstrike.com · US-3: https://api.us-3.crowdstrike.com · EU-1: https://api.eu-1.crowdstrike.com · US-GOV-1: https://api.laggar.gcw.crowdstrike.com
6566
```
6667

6768
Credentials come from environment variables (checked first) or the TOML profile, and are never hardcoded. Verify your setup:
@@ -269,7 +270,7 @@ python common/scripts/auth.py # Verify credentials resolve and a token
269270
/crowdstrike-falcon-fusion:setup # Re-run interactive credential setup (Claude Code)
270271
```
271272

272-
Confirm `FALCON_CLIENT_ID` and `FALCON_CLIENT_SECRET` are set in your environment or TOML profile, and that `FALCON_BASE_URL` points at the correct cloud (US-1 is the default; set it for US-2, EU-1, or US-GOV).
273+
Confirm `FALCON_CLIENT_ID` and `FALCON_CLIENT_SECRET` are set in your environment or TOML profile, and that `FALCON_BASE_URL` points at the correct cloud (US-1 is the default; set it for US-2, US-3, EU-1, or US-GOV).
273274

274275
### Stale action cache
275276

skills/setup/SKILL.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -93,10 +93,20 @@ base_url = "https://api.us-2.crowdstrike.com"
9393
# client_secret = ""
9494
# base_url = "https://api.crowdstrike.com"
9595
#
96+
# [us-3]
97+
# client_id = ""
98+
# client_secret = ""
99+
# base_url = "https://api.us-3.crowdstrike.com"
100+
#
96101
# [eu-1]
97102
# client_id = ""
98103
# client_secret = ""
99104
# base_url = "https://api.eu-1.crowdstrike.com"
105+
#
106+
# [us-gov-1]
107+
# client_id = ""
108+
# client_secret = ""
109+
# base_url = "https://api.laggar.gcw.crowdstrike.com"
100110
```
101111

102112
After creating the file, restrict its permissions (skip on Windows, where the user

0 commit comments

Comments
 (0)