Skip to content

Commit

Permalink
chore: specified permissions need for dashboard to operate in docs
Browse files Browse the repository at this point in the history
  • Loading branch information
chejimmy committed Nov 27, 2024
1 parent 3204abc commit 71bae9c
Showing 1 changed file with 47 additions and 0 deletions.
47 changes: 47 additions & 0 deletions apps/doc-site/stories/components/dashboard/Docs.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -182,4 +182,51 @@ const DashboardPage = () => {
/>
};
```

## IAM permissions for dashboard

The following permissions policy specifies the actions required to access IoT assets and asset data in your account. Please make sure the AWS credentials provided have the following permissions in order for dashboard to operate.

```
{
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Allow",
"Action": [
"iotsitewise:ListAssets",
"iotsitewise:DescribeAsset",
"iotsitewise:ListAssociatedAssets",
"iotsitewise:ListAssetProperties",
"iotsitewise:DescribeAssetProperty",
"iotsitewise:GetAssetPropertyValue",
"iotsitewise:GetAssetPropertyValueHistory",
"iotsitewise:GetAssetPropertyAggregates",
"iotsitewise:GetInterpolatedAssetPropertyValues",
"iotsitewise:BatchGetAssetPropertyAggregates",
"iotsitewise:BatchGetAssetPropertyValue",
"iotsitewise:BatchGetAssetPropertyValueHistory",
"iotsitewise:ListAssetRelationships",
"iotsitewise:DescribeAssetModel",
"iotsitewise:ListAssetModels",
"iotsitewise:DescribeAssetCompositeModel",
"iotsitewise:DescribeAssetModelCompositeModel",
"iotsitewise:ListAssetModelProperties",
"iotsitewise:ExecuteQuery",
"iotsitewise:ListTimeSeries",
"iotsitewise:DescribeTimeSeries",
"iotsitewise:DescribeDataset",
"iotsitewise:ListDatasets",
"iotevents:DescribeAlarmModel",
"iotevents:ListTagsForResource",
"iottwinmaker:ListWorkspaces",
"iottwinmaker:ExecuteQuery",
"iottwinmaker:GetWorkspace",
"iotsitewise:InvokeAssistant"
],
"Resource": "*"
}
]
}
```

0 comments on commit 71bae9c

Please sign in to comment.