Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit4c71ff9

Browse files
authored
refactor: Add minimal terraform project (#308)
I was thinking it might be nice to have some example projects (especially as we on-board new developers) to make it easy to create new projects.This adds the most basic possible terraform module... just an output block. However, it's enough to run `coder projects create` and go through the whole lifecycle of creating a project and workspace (although, it's really boring since there are no parameters).
1 parent3f77814 commit4c71ff9

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

‎README.md‎

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,8 @@ This repository contains source code for Coder V2. Additional documentation:
1010
##Directory Structure
1111

1212
-`.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).
13-
-[`semantic.yaml`](./github/semantic.yaml): Configuration for[semantic pull requests](https://github.com/apps/semantic-pull-requests)
13+
-[`semantic.yaml`](./github/semantic.yaml): Configuration for[semantic pull requests](https://github.com/apps/semantic-pull-requests)\
14+
-`examples`: Example terraform project templates.
1415
-`site`: Front-end UI code.
1516

1617
##Development

‎examples/minimal-project/main.tf‎

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
# The simplest possible Terraform module: it just outputs "Hello, World!"
2+
output"hello_world" {
3+
value="Hello, World!"
4+
}

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp