Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions bash/install/falcon-linux-install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -601,6 +601,7 @@ cs_cloud() {
us-2) echo "api.us-2.crowdstrike.com" ;;
eu-1) echo "api.eu-1.crowdstrike.com" ;;
us-gov-1) echo "api.laggar.gcw.crowdstrike.com" ;;
us-gov-2) echo "api.us-gov-2.crowdstrike.mil" ;;
*) die "Unrecognized Falcon Cloud: ${cs_falcon_cloud}" ;;
esac
}
Expand Down
1 change: 1 addition & 0 deletions bash/install/falcon-linux-uninstall.sh
Original file line number Diff line number Diff line change
Expand Up @@ -179,6 +179,7 @@ cs_cloud() {
us-2) echo "api.us-2.crowdstrike.com" ;;
eu-1) echo "api.eu-1.crowdstrike.com" ;;
us-gov-1) echo "api.laggar.gcw.crowdstrike.com" ;;
us-gov-2) echo "api.us-gov-2.crowdstrike.mil" ;;
*) die "Unrecognized Falcon Cloud: ${cs_falcon_cloud}" ;;
esac
}
Expand Down
1 change: 1 addition & 0 deletions bash/migrate/falcon-linux-migrate.sh
Original file line number Diff line number Diff line change
Expand Up @@ -282,6 +282,7 @@ cs_cloud() {
us-2) echo "api.us-2.crowdstrike.com" ;;
eu-1) echo "api.eu-1.crowdstrike.com" ;;
us-gov-1) echo "api.laggar.gcw.crowdstrike.com" ;;
us-gov-2) echo "api.us-gov-2.crowdstrike.mil" ;;
*) die "Unrecognized Falcon Cloud: ${cs_falcon_cloud}" ;;
esac
}
Expand Down
1 change: 1 addition & 0 deletions powershell/install/falcon_windows_install.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -197,6 +197,7 @@ begin {
'us-2' { 'https://api.us-2.crowdstrike.com'; break }
'eu-1' { 'https://api.eu-1.crowdstrike.com'; break }
'us-gov-1' { 'https://api.laggar.gcw.crowdstrike.com'; break }
'us-gov-2' { 'https://api.us-gov-2.crowdstrike.mil'; break }
default { throw "Provided region $xCsRegion is invalid. Please set FalconCloud to a valid region or 'autodiscover'"; break }
}
return $Output
Expand Down
1 change: 1 addition & 0 deletions powershell/install/falcon_windows_uninstall.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -183,6 +183,7 @@ begin {
'us-2' { 'https://api.us-2.crowdstrike.com'; break }
'eu-1' { 'https://api.eu-1.crowdstrike.com'; break }
'us-gov-1' { 'https://api.laggar.gcw.crowdstrike.com'; break }
'us-gov-2' { 'https://api.us-gov-2.crowdstrike.mil'; break }
default { throw "Provided region $xCsRegion is invalid. Please set FalconCloud to a valid region or 'autodiscover'"; break }
}
return $Output
Expand Down
1 change: 1 addition & 0 deletions powershell/migrate/falcon_windows_migrate.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -981,6 +981,7 @@ function Get-FalconCloud ([string] $xCsRegion) {
'us-2' { 'https://api.us-2.crowdstrike.com'; break }
'eu-1' { 'https://api.eu-1.crowdstrike.com'; break }
'us-gov-1' { 'https://api.laggar.gcw.crowdstrike.com'; break }
'us-gov-2' { 'https://api.us-gov-2.crowdstrike.mil'; break }
default { throw "Provided region $xCsRegion is invalid. Please set FalconCloud to a valid region or 'autodiscover'"; break }
}
return $Output
Expand Down
Loading