Report Storage Options
Reports can currently be configured to be stored in any of the following cloud storage options:
AWS S3 Bucket
-
Navigate to
S3, click onCreate Bucket, follow the default instructions and click onCreate -
Navigate to
IAM→Policies -
Create a new policy select JSON policy editor and paste the following contents (Make sure the
BUCKET_NAMEkeyword is replace with actual bucket name created in the previous step) -
{
"Version": "2012-10-17",
"Statement": [
{
"Sid": "VisualEditor0",
"Effect": "Allow",
"Action": [
"s3:PutObject",
"s3:GetObject",
"s3:GetObjectVersionTagging",
"s3:GetObjectAttributes",
"s3:GetObjectTagging",
"s3:GetObjectVersion"
],
"Resource": "arn:aws:s3:::BUCKET_NAME/*"
}
]
}
-
Click on
Nextand enter the policy name / description -
Click on
Create Policy -
Navigate to
IAM→Users -
Enter the user name and click on
Next -
Select
Attach Policies Directlyand select the policy that was created in the step earlier -
Follow the instructions and create the user
-
Select the newly created user and select
Security Credentialstab and click onCreate Access Key -
Select
Command Line Interface (CLI)option and click on next -
Finally click on
Create Access Keyand copy the generatedAccess KeyandSecret Access keydsd
-
Navigate to
Global Settings→Settings -
Search for
Reporting Configand click onEditaction item -
Value for
PROVIDERshould beAWS S3 -
Value for
REGIONshould be the value in which the bucket was created -
Value for
BUCKET_NAMEshould be the exact bucket name -
Value for
CLIENT_IDshould be the value ofAccess Keygenerated earlier -
Value for
CLIENT_SECRETshould be the value ofSecret Access keygenerated earlier
Google Cloud Storage Bucket
-
In Google Cloud, create a Bucket and Service Account -
-
Navigate to
Cloud Storage→Buckets -
Click on
Createand follow the instructions to create a new bucket. -
Navigate to
IAM & Admin→Service Accounts -
Click on
Create Service Account→ Enter the name, description and click onCreate and Continue -
Add
Storage Object Creator&Storage Object Viewerroles and create the service account -
Click on the newly create service account and navigate to
Keystab. -
Click on
Add Key→Create New Key→JSON, to download the private key json.
-
-
In Falcon
-
Navigate to
Global Settings→Settings -
Search for
Reporting Configand click onEditaction item -
Value for
PROVIDERshould beGCS -
Value for
REGIONshould be the value in which the bucket was created -
Value for
BUCKET_NAMEshould be the exact bucket name -
Value for
SECURE_VALUE_1should be contents of the JSON private key file downloaded earlier
-