Skip to content

Commit 84f3e2a

Browse files
committed
Merge branch 'rc-v0.3.0'
2 parents 036b11c + 436372e commit 84f3e2a

File tree

1 file changed

+22
-6
lines changed

1 file changed

+22
-6
lines changed

main.tf

Lines changed: 22 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -110,12 +110,28 @@ resource "aws_iam_policy_attachment" "allow_worklytics_tenant_bucket_access" {
110110

111111
locals {
112112
todo_content = <<EOT
113-
# Configure Export in Worklytics
114-
115-
1. Go to [https://app.worklytics.co/](https://app.worklytics.co/), navigate to 'Export Data' and
116-
'Create new connection'.
117-
2. Set `Location` to `s3://${aws_s3_bucket.worklytics_export.bucket}`
118-
3. Set `Role` to `${aws_iam_role.for_worklytics_tenant.arn}`
113+
# Configure Data Export in Worklytics
114+
115+
1. Ensure you're authenticated with Worklytics. Either sign-in at [https://app.worklytics.co](https://app.worklytics.co)
116+
with your organization's SSO provider *or* request OTP link from your Worklytics support team.
117+
2. Visit `https://app.worklytics.co/analytics/data-export/connect?bucket=${aws_s3_bucket
118+
.worklytics_export.bucket}&roleArn=${aws_iam_role.for_worklytics_tenant.arn}`
119+
3. Review any additional settings (such as the Dataset type you'd like to export) and adjust
120+
values as you see fit, then click "Create Data Export".
121+
122+
Alternatively, you may follow the manual instructions below:
123+
124+
1. Visit [https://app.worklytics.co/analytics/data-export](https://app.worklytics.co/analytics/data-export)
125+
(or login into Worklytics, and navigate to Manage --> Export Data).
126+
2. Click on the 'Create New Data Export' button in the upper right.
127+
3. Fill in the form with the following values:
128+
- **Data Export Name** - choose a name that will help you identify this export in the future.
129+
- **Data Export Type** - choose the type of data you'd like to export. Check our
130+
[Data Export Documentation](https://app.worklytics.co/docs/data-export) for a complete
131+
description of all the available datasets.
132+
- **Data Destination** - choose 'Amazon S3', use `${aws_s3_bucket.worklytics_export.bucket}`
133+
for the **Bucket** field, and `${aws_iam_role.for_worklytics_tenant.arn}` for the **Role ARN**
134+
field.
119135
120136
EOT
121137
}

0 commit comments

Comments
 (0)