Mender supports preparing devices to use AWS IoT Core. After installing Mender on the device it is automatically created in AWS IoT Core and applications running on the device get access to it. With Mender, you can start writing your AWS IoT application by letting Mender manage the provisioning of the device certificate keys for IoT Core. Moreover, the Device Shadow is integrated into the Mender ecosystem letting you control the desired state and read the one reported by your devices in AWS.
This integration is available in all Mender plans, as well as Mender Open Source.
You need Mender Configure to distribute the AWS IoT Core keys and certificates to the devices.
It is currently possible to have only one AWS IoT Core integration configured per Mender Organization. More advanced integration scenarios can be configured via webhooks.
After enabling the integration, Things in AWS IoT Core will be created automatically after the devices are accepted in the Mender UI. Existing Things and devices (in both systems) are left unchanged.
You need a device integrated with Mender, see the Get started guide.
You need to set up an AWS account with AWS IoT Core - see AWS IoT Core documentation for more information. To integrate Mender with AWS IoT Core you need to provide an AWS IAM access key for a user with enough privileges to manage AWS IoT Core - see AWS Access management documentation for more information.
An IAM example policy with the minimal required permissions set follows:
{
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Allow",
"Action": [
"iot:AttachPolicy",
"iot:AttachThingPrincipal",
"iot:CreateCertificateFromCsr",
"iot:CreatePolicy",
"iot:CreateThing",
"iot:DeleteCertificate",
"iot:DeletePolicy",
"iot:DeleteThing",
"iot:DescribeAccountAuditConfiguration",
"iot:DescribeCertificate",
"iot:DescribeEndpoint",
"iot:DescribeThing",
"iot:DetachThingPrincipal",
"iot:GetIndexingConfiguration",
"iot:ListBillingGroups",
"iot:ListScheduledAudits",
"iot:ListThingGroups",
"iot:ListThingGroupsForThing",
"iot:ListThingPrincipals",
"iot:ListThingTypes",
"iot:ListThings",
"iot:UpdateCertificate"
],
"Resource": "*"
}
]
}
For getting started and demo purposes, you can use the AWSIoTFullAccess
managed policy, which has extended privileges. However, we don't recommend it for production usage.
You also have to create an AWS IoT Core Device Policy. The policy will be attached to all accepted devices in the Mender UI.
An AWS IoT Policy example with extended permissions set for getting started and demo purposes follows:
{
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Allow",
"Action": "iot:Connect",
"Resource": "*"
},
{
"Effect": "Allow",
"Action": "iot:Publish",
"Resource": "*"
},
{
"Effect": "Allow",
"Action": "iot:Receive",
"Resource": "*"
},
{
"Effect": "Allow",
"Action": "iot:Subscribe",
"Resource": "*"
}
]
}
To connect your devices to AWS IoT Core, you need to set up the integration by providing an AWS IAM access key pair and specifying the AWS IoT Core Device Policy name.
Open the Mender UI and navigate to Settings
-> Integrations
:
Choose the AWS IoT Core
integration and enter your IAM Key ID, Key Secret, Region and Device Policy Name:
You can create the AWS access keys from the Security credentials
tab in the AWS IAM Users menu:
To attach IAM Policy to the AWS user in AWS Management Console go to IAM
-> Users
-> <username>
, press Add permissions
in Permissions
tab and attach AWSIoTFullAccess
existing policy directly.
The AWSIoTFullAccess
policy has all the required permissions, but we encourage you to use a more limited IAM policy.
Go to the Devices
tab in Mender and accept a device. After it gets authorized in Mender, it will also show up in your AWS IoT Core:
Both Mender and AWS IoT Core use the same Device ID. This makes it easy to cross-reference your devices between Mender and AWS IoT Core.
From now on, your device can send data to AWS IoT Core!
The lifecycle of an AWS IoT Core integrated device is:
/var/lib/mender-configure/device-config.json
) on the device. We recommend creating a Mender configuration script to reconfigure the AWS IoT application and restart it with these credentials.rejected
or dismissed
, Mender will automatically inactivate the certificate associated with the Thing in AWS IoT Core.decommissioned
, the Thing and the related resources, including the certificate, are automatically Deleted
from AWS IoT Core.The Mender Server integrates with IoT Core Device Shadow service. This means you can see and manage the Device Shadow directly from Mender, together with everything else about the device.
The Device Shadow is available through the Mender APIs and UI.
Mender strips away Device Shadow metadata from the AWS IoT Device Shadow because it's not indented to be changed by users. Thus, it's not visible in the Mender UI nor API responses. They still exist in AWS IoT Core, however.
Role Based Access Control is only available in the Mender Enterprise plan. See the Mender features page for an overview of all Mender plans and features.
Admin permission is required to set up the integration, i.e. set the AWS access keys, region and device policy name for AWS IoT Core in the Mender's Settings.
Role Based Access Control is also enforced for the Device Shadow:
© 2024 Northern.tech AS