Skip to content

Latest commit

 

History

History
52 lines (32 loc) · 2.13 KB

File metadata and controls

52 lines (32 loc) · 2.13 KB

Overview

This is the final end-to-end solution overview:

Amazon Timestream is a purpose-built time-series database offered by AWS.

Time series data is a sequence of data points recorded over time. It is used to track events that change over time, such as sensor readings from connected IoT devices.

Let's start by deploying our lab environment using AWS CDK and Python code.

Note: This repository is currently a work in progress, including the scope presented in my YouTube playlist.

Quick start

python3 -m venv venv
source venv/bin/activate
pip install -U pip
pip install -U -r requirements.txt
cdk --profile default deploy --all

Examine results via the AWS Web Console.

Remove cloud resources once you finish working with this lab to avoid AWS costs.

cdk --profile default destroy --all

Explanation

In the first step, we deployed the Amazon Timestream Database.

Before AWS IoT Core can send telemetry data to that database, we need to grant it permission to do so. Please remember that AWS services can not interact with each other without explicit authorization.

We will create an IAM Role allowing AWS IoT Core to execute actions defined in an IAM Policy.

Codifying IAM Roles and Policies provides several benefits:
✅ Tracking permission changes ("who" changed "what" on what "date").
✅ Auditing security posture (analyzing code to detect potential issues).
✅ Deploying the same set of privileges to Dev/Test/Int/Prod environments.

Useful links

AWS CLI

https://docs.aws.amazon.com/cli/latest/userguide/cli-chap-getting-started.html