mirror of
https://github.com/immich-app/immich.git
synced 2025-01-06 03:46:47 +01:00
9 lines
314 B
Terraform
9 lines
314 B
Terraform
|
resource "cloudflare_record" "immich_app_release_domain" {
|
||
|
name = "immich.app"
|
||
|
proxied = true
|
||
|
ttl = 1
|
||
|
type = "CNAME"
|
||
|
value = data.terraform_remote_state.cloudflare_immich_app_docs.outputs.immich_app_branch_subdomain
|
||
|
zone_id = data.terraform_remote_state.cloudflare_account.outputs.immich_app_zone_id
|
||
|
}
|