From 288205e302d9f6afa06b8602184e983d2080a5b6 Mon Sep 17 00:00:00 2001 From: Owen Jacobson Date: Tue, 17 Oct 2023 21:17:55 -0400 Subject: CLI tool for updating Route53 DNS for an ASG. --- Cargo.toml | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 Cargo.toml (limited to 'Cargo.toml') diff --git a/Cargo.toml b/Cargo.toml new file mode 100644 index 0000000..2e2abd5 --- /dev/null +++ b/Cargo.toml @@ -0,0 +1,24 @@ +[package] +name = "aws-autoscaling-dns" +version = "0.1.0-dev" + +authors = ["owen@grimoire.ca"] +readme = "README.md" +license = "All rights reserved" +description = "Automatically synch an AWS autoscaling group with a Route53 DNS entry" +edition = "2021" + +publish = false + +[dependencies] +anyhow = "1.0.75" +aws-config = "0.56.1" +aws-sdk-autoscaling = "0.33.0" +aws-sdk-ec2 = "0.33.1" +aws-sdk-route53 = "0.33.1" +aws-types = "0.56.1" +clap = { version = "4.4.6", features = ["derive"] } +futures = "0.3.28" +tokio = { version = "1.33.0", features = ["full"] } +tokio-stream = "0.1.14" +trust-dns-proto = "0.23.0" -- cgit v1.2.3