spkane / todo-for-terraform

Todo API server w/ compatible terraform provider

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Todo for Terraform

  • Requires (recent versions, but approximate):
    • terraform 0.13.X+
    • go 1.15.X+ (compiling)
    • docker 20.10.X+ (build & test scripts)

Todo Server

Quick Start

docker run --name todo-list -p 8080:80 spkane/todo-list-server:latest

Build

./bin/build.sh

Usage

curl -i http://127.0.0.1:8080/
curl -i http://127.0.0.1:8080/ -d "{\"description\":\"message $RANDOM\",\"completed\":false}" -H 'Content-Type: application/spkane.todo-list.v1+json'
curl -i http://127.0.0.1:8080/ -d "{\"description\":\"message $RANDOM\",\"completed\":false}" -H 'Content-Type: application/spkane.todo-list.v1+json'
curl -i http://127.0.0.1:8080/ -d "{\"description\":\"message $RANDOM\",\"completed\":false}" -H 'Content-Type: application/spkane.todo-list.v1+json'
curl -i http://127.0.0.1:8080/3 -X PUT -H 'Content-Type: application/spkane.todo-list.v1+json' -d '{"description":"go shopping",\"completed\":true}'
curl -i http://127.0.0.1:8080/1 -X DELETE -H 'Content-Type: application/spkane.todo-list.v1+json'
curl -i http://127.0.0.1:8080/3 -X DELETE -H 'Content-Type: application/spkane.todo-list.v1+json'
curl -i http://127.0.0.1:8080

Build & Test

./bin/build.sh

The build script runs the Integration tests. If you want to run real local terraform tests, you can run this script:

./bin/tests_manual.sh

Terraform Provider

The source code for the Terraform provider can be found here:

In your terraform HCL you will need to reference the provider with something like this:

terraform {
  required_providers {
    todo = {
      source  = "spkane/todo"
      version = "2.0.3"
    }
  }
}

TODOs

  • https setup
  • Setup docker compose to use pre-built binary

About

Todo API server w/ compatible terraform provider

License:Apache License 2.0


Languages

Language:HCL 49.1%Language:Go 24.5%Language:Shell 23.4%Language:Dockerfile 3.0%