Skip to content

Commit d65a325

Browse files
committed
fix table, amend tf, fix upload-sarif version
1 parent 17b3df1 commit d65a325

6 files changed

Lines changed: 14 additions & 14 deletions

File tree

.github/workflows/analyse_workflows.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
3131

3232
- name: Upload SARIF file
33-
uses: github/codeql-action/upload-sarif@v3.27.9
33+
uses: github/codeql-action/upload-sarif@main
3434
with:
3535
sarif_file: results.sarif
3636
category: zizmor

.github/workflows/deploy.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -82,6 +82,7 @@ jobs:
8282
full="https://efpb.org/assets/images/fulls/$img"
8383
echo "[![$img]($thumb)]($full)"
8484
echo ""
85+
echo ""
8586
done
8687
echo ""
8788
echo "Return to the [Main Gallery](https://efpb.org)"

README.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -105,9 +105,7 @@ Images are stored in `assets/images/fulls/` and thumbnails are stored in `assets
105105
| Membership | Action |
106106
|-------------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
107107
| Non-members | We will gladly accept any contributions to the site. Please fork the repository and submit a pull request with your changes. We will review and merge them as soon as possible. |
108-
|
109108
| Members | Please [submit an issue](https://github.com/EppingForestPipeBand/EppingForestPipeBand.github.io/issues/new) to request an organisation invite. Once you have been invited, you will be able to push directly to the main branch. |
110-
|
111109

112110
## Code of Conduct
113111

opentofu/data.tofu

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
data "cloudflare_zone" "zone" {
1+
data "cloudflare_zone" "main" {
22
name = var.domain
33
}

opentofu/dns.tofu

Lines changed: 11 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@ locals {
22
non_proxied_types = ["TXT", "MX"]
33

44
mx_records = {
5-
"mx.zoho.eu" = "10"
6-
"mx2.zoho.eu" = "20"
7-
"mx3.zoho.eu" = "50"
5+
"mx.zoho.com" = "10"
6+
"mx2.zoho.com" = "20"
7+
"mx3.zoho.com" = "50"
88
}
99

1010
dns_records = flatten(
@@ -36,7 +36,7 @@ locals {
3636
resource "cloudflare_record" "root" {
3737
for_each = { for record in local.dns_records : record.key => record }
3838

39-
zone_id = data.cloudflare_zone.zone.id
39+
zone_id = data.cloudflare_zone.main.id
4040
name = var.domain
4141
type = each.value.type
4242
ttl = 1
@@ -49,10 +49,15 @@ resource "cloudflare_record" "email" {
4949
for_each = local.mx_records
5050
name = var.domain
5151
type = "MX"
52-
zone_id = data.cloudflare_zone.zone.id
52+
zone_id = data.cloudflare_zone.main.id
5353
content = each.key
5454
priority = each.value
5555
proxied = false
5656
}
5757

58-
# revert a record to 173.254.30.93
58+
resource "cloudflare_record" "dkim" {
59+
name = "zmail._domainkey"
60+
type = "TXT"
61+
zone_id = data.cloudflare_zone.main.id
62+
content = "v=DKIM1; k=rsa; p=MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQCFrH13L2fRlBHOu20jC0Bp7gYHWPG8sdXlU5SndG0FynyCJ80Kq//VrpsOFs2tGU5YsHsIXP1Kh4xBVYDssM6CtD5wiuFudunxVZXE42GIP3bA191mIbKSVk6W843uAl0TJ6IN8pTlMlRV/39jwMzpfWLvcX9+zfvmc+psNkhMRQIDAQAB"
63+
}

opentofu/github.tofu

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -27,10 +27,6 @@ resource "github_repository" "website" {
2727
"performance",
2828
"pipe-band",
2929
"pipe-band-music",
30-
"scotland",
31-
"scottish-heritage",
32-
"scottish-tradition",
33-
"traditional-music",
3430
]
3531
vulnerability_alerts = true
3632

0 commit comments

Comments
 (0)