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.

posta un anno fa335 visualizzazioni
2 Risposte
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
ESPERTO
con risposta un anno fa
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);
con risposta un anno fa

Accesso non effettuato. Accedi per postare una risposta.

Una buona risposta soddisfa chiaramente la domanda, fornisce un feedback costruttivo e incoraggia la crescita professionale del richiedente.

Linee guida per rispondere alle domande