How to use the Fleet Provisioning Hook to assign a thing to a thing group?

0

I'd like my PreProvisioning Hook lambda to set the thing group that the newly created thing should be assigned to. But I can't find an example of what to return in the parameterOverrides map to accomplish that.

asked a year ago321 views
2 Answers
0

The PreProvisioning Hook lambda is only used to authorize the device registration via Fleet Provisioning. You can define the Thing Group in the fleet provisioning template associated to the Fleet Provisioning birth certificate. You can also associate the Thing Group dynamically using Dynamic Thing Groups.

Finally, you could also associate the thing to a thing group by triggering a lambda function via an IoT Rule listening on registry events

AWS
EXPERT
answered a year ago
0

For us, the right answer was for the PreProvisioning hook to set a variable (deviceType in the below) that the template can use to set the Thing Type. We wanted to use Thing Type in our MQTT Allow directives

    Map<String, String> parameters = new HashMap<>();
    // the provisioningTemplateBody.json uses this parameter to assign the new thing to a Thing Type
    parameters.put("DeviceType", thingType);

    return Map.of("allowProvisioning", allowProvisioning,
    			  "parameterOverrides", parameters);
answered a year ago

You are not logged in. Log in to post an answer.

A good answer clearly answers the question and provides constructive feedback and encourages professional growth in the question asker.

Guidelines for Answering Questions