Help Center
Welcome to the WalkMe Help Center

Please login in order to continue:

Work flows better with WalkMe
Work flows better with WalkMe.

How to Configure an Amazon S3 Destination in the Integration Center

Last Updated November 21, 2024

Brief Overview

By using WalkMe's Integration Center it is possible to either export Insights reports to an Amazon Simple Cloud Storage (S3) bucket or to pull attributes from an Amazon Simple Cloud Storage (S3) bucket and populate data into WalkMe from for analytics and content segmentation.

Option A - Authenticate by Credentials

  1. In Authentication method choose: "By Credentials"
  2. Provide Access Key and Secret Key of your Amazon S3


Option B - Authenticate by IAM Role

This option enables adding an S3 bucket destination by having the client create an IAM role that can access their S3 bucket, and enabling WalkMe to assume that role to access it.

  1. Create S3 bucket with name <bucket-name>
  2. Create IAM Role with the following permissions and trust relationship:
    1. IAM Role permissions:
      • Replace ' <bucket-name> ' with actual bucket name
      {
          "Version""2012-10-17",
          "Statement": [
              {
                  "Sid""AllowWalkMeRole0",
                  "Effect""Allow",
                  "Action""s3:ListBucket",
                  "Resource""arn:aws:s3:::<bucket-name>/"
              },
              {
                  "Sid""AllowWalkMeRole1",
                  "Effect""Allow",
                  "Action": [
                      "s3:GetObject",
                      "s3:PutObject",
                      "s3:DeleteObject"
                  ],
                  "Resource""arn:aws:s3:::<bucket-name>/*"
              }
          ]
      }
    2. Trust relationship:
      {
        "Version": "2012-10-17",
        "Statement": [
          {
            "Effect": "Allow",
            "Principal": {
              "AWS": [
                 "arn:aws:iam::584278441476:role/walkme-s3-integrations-prod" // for US
                 "arn:aws:iam::584278441476:role/walkme-s3-integrations-eu-prod" // for EU
              ]
            },
            "Action": "sts:AssumeRole",
            "Condition": {}
          }
        ]
      }
  3. In the Integration center - S3 destination setup form:
    1. Under Authentication Method select: "IAM Role - Bucket on Customer's side"
    2. Enter the IAM role ARN value, <bucket-name> and its region

Option C - Authenticate by Bucket Settings

  1. Navigate to the Integrations Center

  2. Select AWS S3 to WalkMe

  3. Click the Destinations (Sources) button on the top right of the screen

  4. Click the green New Destination (Source) button

  5. Type a name for the destination (source)

  6. Select Bucket Settings from the Authentication Method dropdown

  7. Paste your bucket name in the Bucket Name field (same as <bucket-name> from above)

  8. Select the region of your bucket from the Region dropdown

  9. *Optional: Enter a bucket path in the Optional Bucket Path field (WalkMe will access the subfolder)

  10. Click Save

How to Add a Subfolder

To preserve order within the S3 folder, you can create subfolders inside your S3 destination folder. This can be done both for new destinations or editing existing destinations.

This is especially useful when you are using the S3 destination for more than one system, or for more then one analytic purpose, such as different reports exported for different in-house customer departments.

To add a subfolder, please follow these steps:

  1. Open the S3 destination in Insights
  2. In the "Optional Bucket Path" field, add a "/" and the name of the subfolder to be added
    • In the example image below you can see that the subfolder being added is called "subfolder_name"
  3. This will create a subfolder "subfolder_name" in the s3 folder instance

Was this article helpful?

Thanks for your feedback!

Be part of something bigger.

Engage with peers, ask questions, share ideas

Ask the Community
×