summaryrefslogtreecommitdiff
path: root/src/route53.rs
diff options
context:
space:
mode:
authorOwen Jacobson <owen@grimoire.ca>2024-07-24 21:56:21 -0400
committerOwen Jacobson <owen@grimoire.ca>2024-07-24 21:56:21 -0400
commit310f78c2f4921089bfb90011a244b71df403129e (patch)
tree639c3ce2423af54fc6251923729fda75c22e520d /src/route53.rs
parent3ce81264fa4e87e4d26b3966778879fccce33998 (diff)
Refactor converge.rs to make the overall flow clearer.
This entails moving a bunch of things into more appropriate modules, as well.
Diffstat (limited to 'src/route53.rs')
-rw-r--r--src/route53.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/route53.rs b/src/route53.rs
index cf7277d..c89e699 100644
--- a/src/route53.rs
+++ b/src/route53.rs
@@ -49,7 +49,7 @@ where
zone.ok_or(anyhow!("No Route53 zone found for DNS suffix: {}", name))
}
-pub async fn zone_suffix_recordsets<C>(
+pub async fn host_recordsets<C>(
aws_context: &C,
zone_id: &str,
dns_name: &Name,