Skip to content

Commit

Permalink
Merge pull request #189 from usegalaxy-eu/eirene
Browse files Browse the repository at this point in the history
Eirene
  • Loading branch information
mira-miracoli authored Jan 30, 2024
2 parents 89689f8 + 5092907 commit 61b6c77
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions dns.tf
Original file line number Diff line number Diff line change
Expand Up @@ -64,15 +64,16 @@ variable "subdomain" {
"materials.usegalaxy.eu",
"phage.usegalaxy.eu",
"aqua.usegalaxy.eu",
"earth-system.usegalaxy.eu"
"earth-system.usegalaxy.eu",
"eirene.usegalaxy.eu"
]
}

resource "aws_route53_record" "subdomains" {
allow_overwrite = true
zone_id = var.zone_usegalaxy_eu

count = 39
count = 40
name = element(var.subdomain, count.index)

type = "CNAME"
Expand Down Expand Up @@ -267,14 +268,15 @@ variable "it-subdomain" {
"stats.usegalaxy.eu",
"streetscience.usegalaxy.eu",
"test.usegalaxy.eu",
"earth-system.usegalaxy.eu"
"earth-system.usegalaxy.eu",
"eirene.usegalaxy.eu"
]
}

resource "aws_route53_record" "it-subdomain-main" {
allow_overwrite = true
zone_id = var.zone_usegalaxy_eu
count = 25
count = 26
name = "*.interactivetoolentrypoint.interactivetool.${element(var.it-subdomain, count.index)}"
type = "CNAME"
ttl = "7200"
Expand Down

0 comments on commit 61b6c77

Please sign in to comment.