An open API service indexing awesome lists of open source software.

https://github.com/kipe/iot-hub-terraform


https://github.com/kipe/iot-hub-terraform

Last synced: 4 months ago
JSON representation

Awesome Lists containing this project

README

          

# Scaleway IoT Hub - Terraform
This is a hobby project I used to test the capabilities of IoT Hub by Scaleway and setting it up using Terraform.

This is in no way designed to be secure, so don't use directly, just for inspiration.

## Accessing database
```sh
PGPASSWORD=`terraform output -raw database_password` \
psql -h `terraform output -raw database_ip` \
-p `terraform output -raw database_port` \
-U `terraform output -raw database_user` \
-d `terraform output -raw database_name`
```