Skip to content

Commit

Permalink
Merge branch 'release/0.3.0'
Browse files Browse the repository at this point in the history
  • Loading branch information
SkypLabs committed Feb 7, 2020
2 parents 8943fa5 + d29b1e0 commit 88724c5
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 1 deletion.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
## v0.3.0 - Feb 7, 2020

### Changes

* Make apex `A` records point to GitHub Pages

## v0.2.1 - Feb 7, 2020

### Fixes
Expand Down
7 changes: 6 additions & 1 deletion dns-records.tf
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,16 @@ locals {
"1 redirect.ovh.net.",
]
},
# See https://help.github.com/en/github/working-with-github-pages/managing-a-custom-domain-for-your-github-pages-site#configuring-an-apex-domain.
{
name = ""
type = "A"
ttl = 0,
targets = [
"213.186.33.5",
"185.199.108.153",
"185.199.109.153",
"185.199.110.153",
"185.199.111.153",
]
},
{
Expand Down Expand Up @@ -107,6 +111,7 @@ locals {
"0 0 465 ssl0.ovh.net.",
]
},
# https://help.github.com/en/github/working-with-github-pages/managing-a-custom-domain-for-your-github-pages-site#configuring-a-subdomain.
{
name = "www"
type = "CNAME"
Expand Down

0 comments on commit 88724c5

Please sign in to comment.