You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In `createIoTThings.py` there is a command that takes a .json config
and deletes all AWS entities described in there.
This commit extends that command to search the credentials directory,
and identify AWS Thing certificates before deleting these
Things and their possibly related entities (which are generated using
the .json config as well). This behaviour only occurs if the `extended`
flag is set on the cleanup command.
This commit also documents this command in `aws_tool.md`.
Signed-off-by: Reuben Cartwright <[email protected]>
The `create-update-simplified` command that (1) creates a Thing and Policy, (2) runs build, (3) creates a bucket, role, and update.
133
+
The `create-update-simplified` command (1) creates a Thing and Policy, (2) runs build, (3) creates a bucket, role, and update.
134
134
This command also re-uses AWS entities where possible, validating entities being re-used.
135
135
136
136
@@ -254,6 +254,30 @@ If you want to add a setting, for example `update_name` to the definitions you c
254
254
255
255
The `target_application` setting is special because it is not defined in the `json` file but can still be mentioned in definitions.
256
256
257
+
## Cleaning up after AWS IoT firmware update job (simplified)
258
+
259
+
The `cleanup-simplified` command uses the config file from `create-update-simplified` and deletes all AWS entities described there.
260
+
Optionally, this command will check all credential files (such as certificates) to identify other Things created by the script.
261
+
These Things are deleted with their certificates.
262
+
The script identifies possibly linked AWS entities by using the .json config file to generate entity names. E.g. if the certificates for 'myTestThing' are found, and you have specified that 'policy_name' is '${thing_name}_policy', then the script will attempt to delete 'myTestThing_policy'.
263
+
264
+
To use this command:
265
+
1. Fill the following fields in the `.json` config file:
266
+
*`thing_name` with the name of your AWS Thing.
267
+
*`role_prefix` with the prefix for your role. This prefix will be pre-pended to your role name with a hyphen by default. For example, with the prefix `Proj` and role name `role`, the completed role name will become `Proj-role`.
268
+
2. Set up following [prerequisites](#prerequisites).
That's it. Your AWS entities created by this script should now be deleted.
276
+
277
+
The only time this command will fail to find or remove all AWS entities is if:
278
+
1. You have created an update, and deleted the role associated before the update is deleted. You need to try re-creating the role (e.g. via re-running `create-update-simplified` with the same config). You may see an error message indicating that you `cannot assume a role` to delete an OTA update.
279
+
2. You have run `create-update-simplified` with config A, then used config B which specifies a different role, policy, update, or bucket name <b>format</b> from A. For example, changing `policy_name` from `${thing_name}_policy` in A to `myTestPolicy` in B will mean that `cleanup-simplified` cannot find `${thing_name}_policy` if run with config B. To fix this, run `cleanup-simplified` with each config separately.
280
+
257
281
## Troubleshooting
258
282
259
283
##### 1. My AWS credentials are rejected, despite being accepted earlier.
0 commit comments