diff --git a/bash/install/falcon-linux-install.sh b/bash/install/falcon-linux-install.sh index c2d82172..a084bfb8 100755 --- a/bash/install/falcon-linux-install.sh +++ b/bash/install/falcon-linux-install.sh @@ -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 } diff --git a/bash/install/falcon-linux-uninstall.sh b/bash/install/falcon-linux-uninstall.sh index ef32e484..61fda977 100755 --- a/bash/install/falcon-linux-uninstall.sh +++ b/bash/install/falcon-linux-uninstall.sh @@ -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 } diff --git a/bash/migrate/falcon-linux-migrate.sh b/bash/migrate/falcon-linux-migrate.sh index 7a59cba9..af9a737b 100755 --- a/bash/migrate/falcon-linux-migrate.sh +++ b/bash/migrate/falcon-linux-migrate.sh @@ -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 } diff --git a/powershell/install/falcon_windows_install.ps1 b/powershell/install/falcon_windows_install.ps1 index 9bf86ed0..eb5f6da3 100755 --- a/powershell/install/falcon_windows_install.ps1 +++ b/powershell/install/falcon_windows_install.ps1 @@ -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 diff --git a/powershell/install/falcon_windows_uninstall.ps1 b/powershell/install/falcon_windows_uninstall.ps1 index 3ae9b5bf..37b508cb 100755 --- a/powershell/install/falcon_windows_uninstall.ps1 +++ b/powershell/install/falcon_windows_uninstall.ps1 @@ -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 diff --git a/powershell/migrate/falcon_windows_migrate.ps1 b/powershell/migrate/falcon_windows_migrate.ps1 index 44b44b4c..654097bc 100644 --- a/powershell/migrate/falcon_windows_migrate.ps1 +++ b/powershell/migrate/falcon_windows_migrate.ps1 @@ -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