Skip to content
This repository has been archived by the owner on Jun 19, 2024. It is now read-only.

Commit

Permalink
feat: adds small example terraform root module for geodesic tutorial (#3
Browse files Browse the repository at this point in the history
)

* feat: adds small example terraform root module for geodesic tutorial

* chore: adds README to geodesic tutorial
  • Loading branch information
Gowiem authored Apr 7, 2021
1 parent bf6bb3c commit 346a399
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 2 deletions.
3 changes: 3 additions & 0 deletions 01-geodesic/README.md
Original file line number Diff line number Diff line change
@@ -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.
11 changes: 11 additions & 0 deletions 01-geodesic/main.tf
Original file line number Diff line number Diff line change
@@ -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"
}
4 changes: 2 additions & 2 deletions 02-atmos/README.md
Original file line number Diff line number Diff line change
@@ -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.

0 comments on commit 346a399

Please sign in to comment.