![]()
Contents
Cirrus Link Resources
Cirrus Link Website![]()
Contact Us (Sales/Support)![]()
Forum![]()
Cirrus Link Modules Docs for Ignition 7.9.x![]()
Inductive Resources
Ignition User Manual![]()
Knowledge Base Articles![]()
Inductive University![]()
Forum![]()
...
Before configuring IoT Bridge (IBSNOW), you must register a 'thing' connection in AWS IoT Core. Begin by browsing to AWS IoT Core in your AWS account. Make sure you are in the same AWS region that you have already deployed IBSNOW to. Begin by expanding 'Secure' and click 'Policies' as shown below.
Now click the 'Create a policy' button. This will bring up the following page.
Set the following parameters for the policy.
Set to the following JSON document but replace the following
ACCOUNT_ID: Your AWS Account ID
| Code Block |
|---|
{ "Version": "2012-10-17", "Statement": [ { "Effect |
": "Allow",
"Action": [
"iot:Connect",
"iot:Publish",
"iot:Subscribe",
"iot:Receive",
"iot:RetainPublish"
],
"Resource": "arn:aws:iot:AWS_REGION:ACCOUNT_ID:*"
}
]
} |
Example JSON document with region and account identifier set in the ARN:
| Code Block |
|---|
{
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Allow",
"Action": [
"iot:Connect",
"iot:Publish",
"iot:Subscribe",
"iot:Receive",
"iot:RetainPublish"
],
"Resource": "arn:aws:iot:us-west-2:123456789012:*"
}
]
} |
Finally click 'Create' in the lower right. This will show the newly created policy.
...