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
1 change: 1 addition & 0 deletions .github/pull_request_template.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
<!-- markdownlint-disable-file first-line-heading -->
## Description

## TODO
Expand Down
11 changes: 11 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,17 @@ jobs:
terraform_wrapper: false
- run: terraform fmt -check -recursive -diff

markdownlint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
# Globs and rules come from .markdownlint-cli2.yaml. npm ci installs the
# exact tree from package-lock.json, so no markdownlint (or transitive)
# release can change rules or break CI without a repo change; bump the
# version deliberately via package.json.
- run: npm ci
- run: npx --no-install markdownlint-cli2

validate:
runs-on: ubuntu-latest
strategy:
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,4 @@
.terraform
.terraform.lock.hcl
tfplan
node_modules
26 changes: 26 additions & 0 deletions .markdownlint-cli2.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
# markdownlint-cli2 configuration. See https://github.com/DavidAnson/markdownlint
# for the full rule reference.
config:
# Line length: prose, tables, and long links routinely exceed any fixed width.
line-length: false
# Bold-as-heading: the docs deliberately use bold text as inline labels.
no-emphasis-as-heading: false
# Table column style: enforces consistent cell padding across tables;
# cosmetic, tables render correctly either way.
table-column-style: false
# Duplicate headings: the CHANGELOG repeats Added/Changed/Fixed per release,
# which is the Keep a Changelog convention. Only flag duplicates under the
# same parent heading.
no-duplicate-heading:
siblings_only: true
# Lint every Markdown file in the repo. Both local runs and CI invoke
# markdownlint-cli2 with no glob arguments, so this is the single source of
# truth for which files are linted.
globs:
- "**/*.{md,markdown}"
# markdownlint-cli2 has no default exclusions, so vendored trees must be
# ignored explicitly: `terraform init` vendors registry modules (and their
# READMEs) under .terraform/, and npm installs under node_modules/.
ignores:
- "**/.terraform/**"
- "**/node_modules/**"
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ Optional release notice.
## [1.6.0] - 2026-02-24

If you rely on the default `search_instance_type` / `search_dedicated_master_type`:

- Upgrading from a version prior to 1.5.0 will fail on `terraform apply`. Upgrade to 1.5.0 first.
- If you have reserved m5 instances, pin the instance types explicitly to keep using them.

Expand Down
14 changes: 9 additions & 5 deletions OPERATIONS.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,20 +12,24 @@ This document provides comprehensive operational procedures for cloud teams mana

### Daily Checklist

- [ ] Health check (5 min) - [Instructions](#daily-health-checks)
- [ ] Health check (5 min) - [Instructions](#daily-health-checks-5-minutes)
- [ ] Monitor alerts - [Dashboard Links](#monitoring-dashboards)
- [ ] Review logs - [Log Locations](#log-management)

### Weekly Checklist

- [ ] Backup verification (10 min) - [Instructions](#backup-verification)
- [ ] Security updates (15 min) - [Instructions](#security-updates)
- [ ] Backup verification (10 min) - [Instructions](#backup-verification-10-minutes)
- [ ] Security updates (15 min) - [Instructions](#security-updates-15-minutes)
<!-- TODO: no "Capacity review" section exists yet; see https://github.com/quiltdata/iac/issues/95 -->
<!-- markdownlint-disable-next-line link-fragments -->
- [ ] Capacity review (10 min) - [Instructions](#capacity-monitoring)

### Monthly Checklist

- [ ] Capacity planning (20 min) - [Instructions](#capacity-planning)
- [ ] Cost review (15 min) - [Instructions](#cost-optimization)
- [ ] Capacity planning (20 min) - [Instructions](#capacity-planning-20-minutes)
- [ ] Cost review (15 min) - [Instructions](#cost-optimization-recommendations)
<!-- TODO: no "Security audit" section exists yet; see https://github.com/quiltdata/iac/issues/95 -->
<!-- markdownlint-disable-next-line link-fragments -->
- [ ] Security audit (30 min) - [Instructions](#security-audit)

## Installation Procedures
Expand Down
Loading