We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f8ca1dc commit ffedde8Copy full SHA for ffedde8
1 file changed
terraform/platform/dns/main.tf
@@ -247,6 +247,16 @@ resource "aws_route53_record" "java_no_lister" {
247
records = ["ghs.googlehosted.com."]
248
}
249
250
+# ---------- Atlassian alias ----------
251
+
252
+resource "aws_route53_record" "java_no_wiki" {
253
+ zone_id = aws_route53_zone.java_no.zone_id
254
+ name = "wiki.java.no"
255
+ type = "CNAME"
256
+ ttl = 3600
257
+ records = ["javabin.atlassian.net"]
258
+}
259
260
# ---------- GitHub Pages subdomains ----------
261
262
resource "aws_route53_record" "java_no_github_pages" {
0 commit comments