Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 27 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,33 @@ infra/ → Terraform infrastructure configuration

Infrastructure is provisioned using Terraform.

**Pre-requisites**: install Terraform.
### Prerequisites

1. Install [Terraform](https://developer.hashicorp.com/terraform/install)
2. Install TFLint

```bash
# macOS
brew install tflint
```

3. Install TFSec

```bash
# macOS
brew install tfsec
```

### Configuration

Create environment variable files for each Terraform environment:

```bash
cp infra/staging.tfvars.example infra/staging.tfvars
cp infra/prod.tfvars.example infra/prod.tfvars
```

### Workflow

Terraform workflow commands are defined in `infra/Makefile`, including formatting, validation, linting, planning, and applying changes.

Expand Down
2 changes: 0 additions & 2 deletions infra/staging.tfvars

This file was deleted.