Skip to content

Commit

Permalink
Merge pull request #188 from hechth/patch-1
Browse files Browse the repository at this point in the history
created eirene subdomain
  • Loading branch information
mira-miracoli authored Jan 29, 2024
2 parents 6dad355 + 76ddea9 commit 0c409f2
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 @@ -268,14 +269,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 = 26
count = 27
name = "*.interactivetoolentrypoint.interactivetool.${element(var.it-subdomain, count.index)}"
type = "CNAME"
ttl = "7200"
Expand Down

0 comments on commit 0c409f2

Please sign in to comment.