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/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ jobs:
cd $HOME
wget https://releases.hashicorp.com/terraform/${TERRAFORM_VERSION}/terraform_${TERRAFORM_VERSION}_linux_amd64.zip
unzip terraform_${TERRAFORM_VERSION}_linux_amd64.zip
sudo mv terraform /usr/local/bin/
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks for the fix!

- name: Setup Python
uses: actions/setup-python@v2
- name: Run pre-commit
Expand Down
14 changes: 7 additions & 7 deletions bankless-community/cloudflare/locals.tf
Original file line number Diff line number Diff line change
Expand Up @@ -70,25 +70,25 @@ locals {
# Must be unique keys, only the last key will be used.
# Change to an Object to support more than 1 name (see examples above)
cname_records = {
"www" = "cname.vercel-dns.com.",
"www" = "blackflagdao.notion.site",
"forum" = "bankless.hosted-by-discourse.com.",
"join" = "cname.vercel-dns.com.",
"join" = "blackflagdao.notion.site",
"academy" = "cname.vercel-dns.com.",
"docs" = "hosting.gitbook.io.",
"bountyboard" = "cname.vercel-dns.com.",
"test-bountyboard" = "cname.vercel-dns.com.",
"season2" = "cname.vercel-dns.com.",
"season3" = "cname.vercel-dns.com.",
"season4" = "cname.vercel-dns.com.",
"season5" = "cname.vercel-dns.com.",
"season2" = "blackflagdao.notion.site",
"season3" = "blackflagdao.notion.site",
"season4" = "blackflagdao.notion.site",
"season5" = "blackflagdao.notion.site",
"rewards" = "app.thrivecoin.com",
"onboarding" = "cname.vercel-dns.com."
}

a_records = {
"apex" = {
"name" = "@",
"value" = "76.76.21.21",
"value" = "208.103.161.33",
"proxied" = false
},
"infosec1" = {
Expand Down
Loading