Skip to content

Commit

Permalink
fix: incorrect quotes around immich.app TXT records
Browse files Browse the repository at this point in the history
  • Loading branch information
zackpollard committed Jun 10, 2024
1 parent a1cc78a commit be3e038
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions deployment/modules/cloudflare/account/dns-immich-app.tf
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ resource "cloudflare_record" "immich_app_txt_root_fastmail_mx" {
proxied = false
ttl = 1
type = "TXT"
value = "\"v=spf1 include:_spf.messagingengine.com ?all\""
value = "v=spf1 include:spf.messagingengine.com ?all"
zone_id = cloudflare_zone.immich_app.id
}

Expand All @@ -95,6 +95,6 @@ resource "cloudflare_record" "immich_app_txt_1password_verification" {
proxied = false
ttl = 1
type = "TXT"
value = "\"1password-site-verification=GPHHHHLRXZHQFKUCAEYLDTI4TM\""
value = "1password-site-verification=GPHHHHLRXZHQFKUCAEYLDTI4TM"
zone_id = cloudflare_zone.immich_app.id
}

0 comments on commit be3e038

Please sign in to comment.