-
Notifications
You must be signed in to change notification settings - Fork 226
CSOAR-3557: GCP integration | Firestore Integration #5844
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
10 commits
Select commit
Hold shift + click to select a range
cc97fca
CSOAR-3557: added doc for google-firestore
mahendrak-sumo c36f666
Merge branch 'main' into CSOAR-3557
mahendrak-sumo f447305
Merge branch 'main' into CSOAR-3557
mahendrak-sumo 5da90e3
Merge branch 'main' into CSOAR-3557
mahendrak-sumo ca83b05
Fix broken link
jpipkin1 f5285d1
Merge branch 'main' into CSOAR-3557
mahendrak-sumo 64860a0
Merge branch 'main' into CSOAR-3557
mahendrak-sumo 41c65f7
Updates from review
jpipkin1 d0b9b7d
CSOAR-3557: added database id info
mahendrak-sumo a2dec06
Merge branch 'main' into CSOAR-3557
mahendrak-sumo File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
60 changes: 60 additions & 0 deletions
60
...atform-services/automation-service/app-central/integrations/google-firestore.md
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,60 @@ | ||
| --- | ||
| title: Google Firestore | ||
| description: '' | ||
| --- | ||
|
|
||
| import useBaseUrl from '@docusaurus/useBaseUrl'; | ||
|
|
||
| <img src={useBaseUrl('/img/platform-services/automation-service/app-central/logos/google.png')} alt="google" width="80"/> | ||
|
|
||
| ***Version: 1.0 | ||
| Updated: Sep 29, 2025*** | ||
|
|
||
| Google Firestore is a flexible, scalable NoSQL cloud database, built on Google Cloud infrastructure, to store and sync data for client and server-side development. | ||
|
|
||
| ## Actions | ||
|
|
||
| * **List Collections** (*Enrichment*) - List all the top level collections. | ||
| * **Get Document** (*Enrichment*) - Get the document using specified document ID. | ||
|
|
||
| ## Google Firestore configuration | ||
|
|
||
| To [create service account credentials](https://developers.google.com/workspace/guides/create-credentials) in Google Workspace needed to configure the Google Firestore app integration, follow these steps: | ||
|
|
||
| 1. Log in to the [Google Cloud](https://console.cloud.google.com) portal. | ||
| 2. Select a Google Cloud project (or create a new one). | ||
| 3. Go to the **API & Services** > **Credentials** page. | ||
| 4. In the same page click on **ENABLES API AND SERVICES** and search for Google Firestore and enable it. | ||
| 5. Click **CREATE CREDENTIALS** and select **Service Account**.<br/><img src={useBaseUrl('/img/platform-services/automation-service/app-central/integrations/google-drive/google-drive-1.png')} style={{border:'1px solid gray'}} alt="google-drive" width="800"/> | ||
| 6. Enter a service account name to display in the Google Cloud console. The Google Cloud console generates a service account ID based on this name. | ||
| 7. (Optional) Enter a description of the service account. | ||
| 8. Skip two optional grant permissions steps and click **Done** to complete the service account creation.<br/><img src={useBaseUrl('/img/platform-services/automation-service/app-central/integrations/google-drive/google-drive-2.png')} style={{border:'1px solid gray'}} alt="google-drive" width="800"/> | ||
| 9. Click on the generated service account to open the details.<br/><img src={useBaseUrl('/img/platform-services/automation-service/app-central/integrations/google-drive/google-drive-3.png')} style={{border:'1px solid gray'}} alt="google-drive" width="800"/> | ||
| 10. Under the **KEYS** tab, click **ADD KEY** and choose **Create new key**.<br/><img src={useBaseUrl('/img/platform-services/automation-service/app-central/integrations/google-drive/google-drive-4.png')} style={{border:'1px solid gray'}} alt="google-drive" width="800"/> | ||
| 11. Click on **CREATE** (make sure **JSON** is selected).<br/><img src={useBaseUrl('/img/platform-services/automation-service/app-central/integrations/google-drive/google-drive-5.png')} style={{border:'1px solid gray'}} alt="google-drive" width="400"/> | ||
| 12. The JSON file is downloaded. Make sure you save it in a safe place. | ||
| 13. Enable the Admin SDK API for the project at [https://console.cloud.google.com/flows/enableapi?apiid=admin.googleapis.com](https://console.cloud.google.com/flows/enableapi?apiid=admin.googleapis.com). | ||
|
|
||
| ## Configure Google Firestore in Automation Service and Cloud SOAR | ||
|
|
||
| import IntegrationsAuth from '../../../../reuse/integrations-authentication.md'; | ||
| import IntegrationCertificate from '../../../../reuse/automation-service/integration-certificate.md'; | ||
| import IntegrationEngine from '../../../../reuse/automation-service/integration-engine.md'; | ||
| import IntegrationLabel from '../../../../reuse/automation-service/integration-label.md'; | ||
| import IntegrationProxy from '../../../../reuse/automation-service/integration-proxy.md'; | ||
| import IntegrationTimeout from '../../../../reuse/automation-service/integration-timeout.md'; | ||
|
|
||
| <IntegrationsAuth/> | ||
| * <IntegrationLabel/> | ||
| * **Private Key Json**. Provide the content of the JSON file generated [above](#google-firestore-configuration). Open the file and copy-paste the whole content in the field. | ||
| * **Database ID**. Enter the Firestore database ID. For default databases, use `(default)`. | ||
| * <IntegrationEngine/> | ||
| * <IntegrationProxy/> | ||
|
|
||
| <img src={useBaseUrl('/img/platform-services/automation-service/app-central/integrations/misc/google-firestore.png')} style={{border:'1px solid gray'}} alt="Google Firestore configuration" width="400"/> | ||
|
|
||
| For information about Google Firestore, see [Google Firestore documentation](https://firebase.google.com/docs/firestore). | ||
|
|
||
| ## Change Log | ||
|
|
||
| * September 29, 2025 (v1.0) - First upload | ||
Binary file added
BIN
+76.1 KB
...-services/automation-service/app-central/integrations/misc/google-firestore.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.