Skip to content

Commit

Permalink
add outright main event server (#14)
Browse files Browse the repository at this point in the history
* add outright main event server

* upgrade terraform
  • Loading branch information
bcheidemann committed Dec 3, 2023
1 parent f81f565 commit 2a9aea5
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
2 changes: 1 addition & 1 deletion terraform/providers.tf
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
terraform {
required_version = "~> 1.5.1"
required_version = "~> 1.6.5"

required_providers {
aws = {
Expand Down
8 changes: 8 additions & 0 deletions terraform/r53.tf
Original file line number Diff line number Diff line change
Expand Up @@ -93,3 +93,11 @@ resource "aws_route53_record" "catlord_servers" {
ttl = 300
records = ["54.37.244.200"]
}

resource "aws_route53_record" "outright_servers" {
zone_id = aws_route53_zone.catlord.zone_id
name = "*.outright.catlord.co.uk"
type = "A"
ttl = 300
records = ["149.202.89.159"]
}

0 comments on commit 2a9aea5

Please sign in to comment.