Skip to content

Commit

Permalink
Remove outdated junk
Browse files Browse the repository at this point in the history
  • Loading branch information
strugee committed Mar 21, 2024
1 parent 56097a2 commit 2540dce
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 13 deletions.
11 changes: 0 additions & 11 deletions dns.tf
Original file line number Diff line number Diff line change
Expand Up @@ -22,17 +22,6 @@ resource "aws_route53_record" "email_dkim_hubspot_records" {
]
}

# TODO remove this; we do DKIM-based verification instead.
resource "aws_ses_domain_identity" "email_domain_identity" {
domain = var.email_domain_name
}

# TODO remove this. It's unnecessary because the domain is verified.
# It's still here only to make a refactoring `plan` clean.
resource "aws_ses_email_identity" "email" {
email = "sre@seagl.org"
}

resource "aws_route53_record" "cloud-a" {
zone_id = module.production_env.zone_id
name = "cloud.seagl.org"
Expand Down
3 changes: 2 additions & 1 deletion env/dns.tf
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
# TODO create NS and SOA records
# Note: we intentionally do not create NS and SOA records and just let Route 53 create them automatically.
# This is Probably Fine(tm) because these records are basically never updated.

resource "aws_route53_zone" "apex" {
name = var.zone_name
Expand Down
1 change: 0 additions & 1 deletion env/nextcloud-office.tf
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,5 @@ module "nc-office-vm" {
instance_type = "m1.small"
network = "general_servers2"
disk_size = 15
# TODO replace this with a real Route 53 zone object when we control that in Terraform
dns_zone = aws_route53_zone.apex
}

0 comments on commit 2540dce

Please sign in to comment.