From 167d96f55317f3a916456447f92042a730bdd970 Mon Sep 17 00:00:00 2001 From: j4y <36337+j4y@users.noreply.github.com> Date: Mon, 5 Jan 2026 23:31:34 -0500 Subject: [PATCH 1/3] chore: update gitignore to include backend.tf --- .gitignore | 5 +++++ terragrunt/terragrunt.hcl | 1 + 2 files changed, 6 insertions(+) diff --git a/.gitignore b/.gitignore index 5747120..5682aab 100644 --- a/.gitignore +++ b/.gitignore @@ -6,6 +6,11 @@ _site/ *.tfstate *.tfstate.backup +# generated files: +terragrunt/backend.tf +terragrunt/provider.tf + + # Terragrunt .terragrunt-cache diff --git a/terragrunt/terragrunt.hcl b/terragrunt/terragrunt.hcl index d5b141c..7980c74 100644 --- a/terragrunt/terragrunt.hcl +++ b/terragrunt/terragrunt.hcl @@ -23,6 +23,7 @@ EOF } # Configure Terragrunt to store tfstate files in an S3 bucket +# This ends up as the backend.tf: remote_state { backend = "s3" config = { From bfd6fea67c96396c2303dee3a61d9a9e9d251abf Mon Sep 17 00:00:00 2001 From: j4y <36337+j4y@users.noreply.github.com> Date: Mon, 5 Jan 2026 23:32:48 -0500 Subject: [PATCH 2/3] chore: fixup link tags to be https --- Rakefile | 6 +++++- credits.md | 6 +++--- 2 files changed, 8 insertions(+), 4 deletions(-) diff --git a/Rakefile b/Rakefile index e3242f4..a73dca4 100644 --- a/Rakefile +++ b/Rakefile @@ -41,7 +41,11 @@ task lint: :build do sh 'tflint --chdir terraform/website/ -c ../../.tflint.hcl' # HTML linting - options = { ignore_status_codes: [400] } + options = { + check_html: true, + check_external_hash: true + } + HTMLProofer.check_directory('./_site', options).run end diff --git a/credits.md b/credits.md index 1f7de53..1581408 100644 --- a/credits.md +++ b/credits.md @@ -5,15 +5,15 @@ permalink: /credits/ ---

- Jay Prall
+ Jay Prall
author

- Kajica Djuric
+ Kajica Djuric

Raul Matei
new icon -

\ No newline at end of file +

From f1505d15932ac6399ccca57f13ea449875b970cf Mon Sep 17 00:00:00 2001 From: j4y <36337+j4y@users.noreply.github.com> Date: Mon, 5 Jan 2026 23:33:42 -0500 Subject: [PATCH 3/3] chore: update vscode settings to ignore _site and other directories --- .vscode/settings.json | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 .vscode/settings.json diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 0000000..90d88ba --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,8 @@ +"files.exclude": { + "_site": true, + ".jekyll-cache": true, + "node_modules": true, + "playwright-report": true, + "test-results": true +} +