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_NAME
keyword 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
Next
and enter the policy name / description -
Click on
Create Policy
-
Navigate to
IAM
→Users
-
Enter the user name and click on
Next
-
Select
Attach Policies Directly
and 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 Credentials
tab and click onCreate Access Key
-
Select
Command Line Interface (CLI)
option and click on next -
Finally click on
Create Access Key
and copy the generatedAccess Key
andSecret Access key
dsd
-
Navigate to
Global Settings
→Settings
-
Search for
Reporting Config
and click onEdit
action item -
Value for
PROVIDER
should beAWS S3
-
Value for
REGION
should be the value in which the bucket was created -
Value for
BUCKET_NAME
should be the exact bucket name -
Value for
CLIENT_ID
should be the value ofAccess Key
generated earlier -
Value for
CLIENT_SECRET
should be the value ofSecret Access key
generated earlier
Google Cloud Storage Bucket
-
In Google Cloud, create a Bucket and Service Account -
-
Navigate to
Cloud Storage
→Buckets
-
Click on
Create
and 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 Viewer
roles and create the service account -
Click on the newly create service account and navigate to
Keys
tab. -
Click on
Add Key
→Create New Key
→JSON
, to download the private key json.
-
-
In Falcon
-
Navigate to
Global Settings
→Settings
-
Search for
Reporting Config
and click onEdit
action item -
Value for
PROVIDER
should beGCS
-
Value for
REGION
should be the value in which the bucket was created -
Value for
BUCKET_NAME
should be the exact bucket name -
Value for
SECURE_VALUE_1
should be contents of the JSON private key file downloaded earlier
-