summaryrefslogtreecommitdiff
path: root/src/ec2.rs
diff options
context:
space:
mode:
authorOwen Jacobson <owen@grimoire.ca>2024-07-24 18:10:03 -0400
committerOwen Jacobson <owen@grimoire.ca>2024-07-24 18:10:03 -0400
commit91105587c2d53199b5e5df89c508305f8efd4e70 (patch)
treeb954e2750de8feb10888746337ecd89e6b8ea7ff /src/ec2.rs
parentd2805c075dc5bc83f65e8dc9673e88d2a01bc11d (diff)
aws_context is now reliably the first non-self argument, rather than sporadically the last one
Diffstat (limited to 'src/ec2.rs')
-rw-r--r--src/ec2.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ec2.rs b/src/ec2.rs
index 604c2a2..2035a64 100644
--- a/src/ec2.rs
+++ b/src/ec2.rs
@@ -15,11 +15,11 @@ pub trait Ec2 {
}
pub async fn instance_recordsets<C>(
+ aws_context: &C,
asg_name: &str,
dns_suffix: &Name,
dns_ttl: i64,
live_instance_ids: &[String],
- aws_context: &C,
) -> Result<HashSet<Hashable<ResourceRecordSet>>>
where
C: Ec2,