diff --git a/README.md b/README.md index 41fd90fbadc2c..762c8464deb89 100644 --- a/README.md +++ b/README.md @@ -10,7 +10,8 @@ This repository contains source code for Coder V2. Additional documentation: ## Directory Structure - `.github/`: Settings for [Dependabot for updating dependencies](https://docs.github.com/en/code-security/supply-chain-security/customizing-dependency-updates) and [build/deploy pipelines with GitHub Actions](https://docs.github.com/en/actions/reference/workflow-syntax-for-github-actions). - - [`semantic.yaml`](./github/semantic.yaml): Configuration for [semantic pull requests](https://github.com/apps/semantic-pull-requests) + - [`semantic.yaml`](./github/semantic.yaml): Configuration for [semantic pull requests](https://github.com/apps/semantic-pull-requests)\ +- `examples`: Example terraform project templates. - `site`: Front-end UI code. ## Development diff --git a/examples/minimal-project/main.tf b/examples/minimal-project/main.tf new file mode 100644 index 0000000000000..0f74afeabe9e9 --- /dev/null +++ b/examples/minimal-project/main.tf @@ -0,0 +1,4 @@ +# The simplest possible Terraform module: it just outputs "Hello, World!" +output "hello_world" { + value = "Hello, World!" +}