Skip to content

Commit

Permalink
Merge pull request #44 from mattcorr/site-refactor
Browse files Browse the repository at this point in the history
added a comment section and fixed a dead link
  • Loading branch information
mattcorr authored Aug 17, 2024
2 parents 1e10a06 + cd160cd commit ea466c2
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions _config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,10 @@ baseurl: "" # the subpath of your site, e.g. /blog
repository: "mattcorr.github.io"
twitter_username: mattcorr
github_username: mattcorr
comments:
provider: "disqus"
disqus:
shortname: "blog-mattcorr"

# Build settings
theme: minimal-mistakes-jekyll
Expand Down
2 changes: 1 addition & 1 deletion _data/navigation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,5 @@ main:
- title: "About"
url: /about/
- title: "TIL"
url: https://til.intrepidintegration.com
url: https://til.mattcorr.com
target: _blank
2 changes: 1 addition & 1 deletion _posts/2020-08-16-terraform-outputs-with-for-each.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ tags:
---
Looking at the standard [documentation page for terraform output](https://www.terraform.io/docs/configuration/outputs.html) there are some samples for basic values and for how to access module values.

This is great, but what if you had been following some of [my previous posts](https://www.intrepidintegration.com/tech/how-to-reference-data-objects-with-terraform/) about looping and want get some output for resources that created with the `for_each` command? How can the static structure of the examples shown work for a dynamically created list of resources?
This is great, but what if you had been following some of [my previous posts](https://blog.mattcorr.com/tech/how-to-reference-data-objects-with-terraform/) about looping and want get some output for resources that created with the `for_each` command? How can the static structure of the examples shown work for a dynamically created list of resources?

The standard syntax for an output statement is:

Expand Down

0 comments on commit ea466c2

Please sign in to comment.