diff --git a/01-geodesic/README.md b/01-geodesic/README.md new file mode 100644 index 0000000..3785729 --- /dev/null +++ b/01-geodesic/README.md @@ -0,0 +1,3 @@ +## Tutorial #1: Getting started with Geodesic + +The code in this directory is an accompaniment to the [Getting started with Geodesic](https://docs.cloudposse.com/tutorials/geodesic-getting-started/) tutorial in our SweetOps documentation. \ No newline at end of file diff --git a/01-geodesic/main.tf b/01-geodesic/main.tf new file mode 100644 index 0000000..6c66775 --- /dev/null +++ b/01-geodesic/main.tf @@ -0,0 +1,11 @@ +data "http" "star_wars" { + url = "https://swapi.dev/api/people/1" + request_headers = { + Accept = "application/json" + } +} + +output "star_wars_data" { + value = jsondecode(data.http.star_wars.body) + description = "Star wars data that we output as part of this simple example project" +} diff --git a/02-atmos/README.md b/02-atmos/README.md index 2f08a1c..c5617cd 100644 --- a/02-atmos/README.md +++ b/02-atmos/README.md @@ -1,3 +1,3 @@ -# Tutorial #2: Atmos +# Tutorial #2: Getting started with Atmos -The code in this directory is an accompaniment to the [Getting started with Atmos](https://docs.cloudposse.com/tutorials/atmos-getting-started/) tutorial on SweetOps. +The code in this directory is an accompaniment to the [Getting started with Atmos](https://docs.cloudposse.com/tutorials/atmos-getting-started/) tutorial in our SweetOps documentation.