mirror of
https://github.com/gensokyo-zone/infrastructure.git
synced 2026-02-09 12:29:19 -08:00
fix(tf): url quoting
This commit is contained in:
parent
1583d61364
commit
e87978ffce
1 changed files with 4 additions and 4 deletions
|
|
@ -77,7 +77,7 @@ resource "cloudflare_record" "kerberos_uri_tcp" {
|
||||||
data {
|
data {
|
||||||
priority = 0
|
priority = 0
|
||||||
weight = 100
|
weight = 100
|
||||||
target = "krb5srv:m:tcp:idp.gensokyo.zone."
|
target = "\"krb5srv:m:tcp:idp.gensokyo.zone.\""
|
||||||
}
|
}
|
||||||
ttl = 3600
|
ttl = 3600
|
||||||
}
|
}
|
||||||
|
|
@ -89,7 +89,7 @@ resource "cloudflare_record" "kerberos_uri_udp" {
|
||||||
data {
|
data {
|
||||||
priority = 0
|
priority = 0
|
||||||
weight = 100
|
weight = 100
|
||||||
target = "krb5srv:m:udp:idp.gensokyo.zone."
|
target = "\"krb5srv:m:udp:idp.gensokyo.zone.\""
|
||||||
}
|
}
|
||||||
ttl = 3600
|
ttl = 3600
|
||||||
}
|
}
|
||||||
|
|
@ -133,7 +133,7 @@ resource "cloudflare_record" "kpasswd_uri_tcp" {
|
||||||
data {
|
data {
|
||||||
priority = 0
|
priority = 0
|
||||||
weight = 100
|
weight = 100
|
||||||
target = "krb5srv:m:tcp:idp.gensokyo.zone."
|
target = "\"krb5srv:m:tcp:idp.gensokyo.zone.\""
|
||||||
}
|
}
|
||||||
ttl = 3600
|
ttl = 3600
|
||||||
}
|
}
|
||||||
|
|
@ -145,7 +145,7 @@ resource "cloudflare_record" "kpasswd_uri_udp" {
|
||||||
data {
|
data {
|
||||||
priority = 0
|
priority = 0
|
||||||
weight = 100
|
weight = 100
|
||||||
target = "krb5srv:m:udp:idp.gensokyo.zone."
|
target = "\"krb5srv:m:udp:idp.gensokyo.zone.\""
|
||||||
}
|
}
|
||||||
ttl = 3600
|
ttl = 3600
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue