Import & Export
Foundry apps can be exported as archives and imported into other CrowdStrike environments. This supports source control workflows, CI/CD pipelines, and multi-environment deployments.
Exporting an app
Section titled “Exporting an app”Exporting creates a .tar.gz archive containing the app’s manifest, function code, UI source, and configuration.
Export from the Falcon console
Section titled “Export from the Falcon console”- Go to Foundry > App manager.
- Find the app you want to export in the list.
- Click the ⋮ menu at the end of its row, then select Export app.
- Save the downloaded
.tar.gzfile.
Export from the CLI
Section titled “Export from the CLI”foundry apps sync --app-id <app-id> --deployment-version <version> --directory <local-path>This downloads the app’s files into a local directory for source control. Note that apps sync produces a working directory, not the .tar.gz archive that the console’s Export button generates.
Importing an app
Section titled “Importing an app”Importing creates a new app from an exported archive. The imported app is a separate copy — changes to the import do not affect the original.
Import from the Falcon console
Section titled “Import from the Falcon console”- Go to Foundry > App manager.
- Click Import app.
- Select a
.tar.gzor.zipfile (max 15 MB). - Review the imported capabilities.
- Click Create.
Import from the CLI
Section titled “Import from the CLI”There is no CLI command for importing an archive. Use the Falcon console import workflow above.
Limitations
Section titled “Limitations”- Imported apps receive a new app ID. They are independent copies, not linked to the original.
- API integration credentials and secrets are not included in exports. You must reconfigure these after importing.
- Collections data is not included. Only the schema definition is exported.