Skip to content
Merged

Fixes #277

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
5 changes: 5 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,11 @@ _site/
*.tfstate
*.tfstate.backup

# generated files:
terragrunt/backend.tf
terragrunt/provider.tf


# Terragrunt
.terragrunt-cache

Expand Down
8 changes: 8 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
"files.exclude": {
"_site": true,
".jekyll-cache": true,
"node_modules": true,
"playwright-report": true,
"test-results": true
}

6 changes: 5 additions & 1 deletion Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
6 changes: 3 additions & 3 deletions credits.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,15 @@ permalink: /credits/
---

<p>
<a class="lnk" href="http://j4y.net/" data-proofer-ignore>Jay Prall</a><br />
<a class="lnk" href="https://j4y.net/">Jay Prall</a><br />
author
</p>

<p>
<a class="lnk" href="http://kaidjuric.com/" data-proofer-ignore>Kajica Djuric</a><br />
Kajica Djuric<br />
</p>

<p>
Raul Matei<br />
new icon
</p>
</p>
1 change: 1 addition & 0 deletions terragrunt/terragrunt.hcl
Original file line number Diff line number Diff line change
Expand Up @@ -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 = {
Expand Down