Skip to content

Commit

Permalink
feat: create cloudflare zone for *.immich.futo.org
Browse files Browse the repository at this point in the history
  • Loading branch information
zackpollard committed Jun 10, 2024
1 parent f366466 commit ae47694
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions deployment/modules/cloudflare/account/zones.tf
Original file line number Diff line number Diff line change
Expand Up @@ -37,3 +37,19 @@ resource "cloudflare_zone_settings_override" "immich_cloud" {
output "immich_cloud_zone_id" {
value = cloudflare_zone.immich_cloud.id
}

resource "cloudflare_zone" "immich_futo_org" {
account_id = var.cloudflare_account_id
zone = "immich.futo.org"
}

resource "cloudflare_zone_settings_override" "immich_futo_org" {
zone_id = cloudflare_zone.immich_futo_org.id

settings {
http3 = "on"
zero_rtt = "on"
tls_1_3 = "zrt"
always_use_https = "on"
}
}

0 comments on commit ae47694

Please sign in to comment.