diff options
Diffstat (limited to 'src/cli.rs')
| -rw-r--r-- | src/cli.rs | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -7,6 +7,7 @@ use trust_dns_proto::rr::Name; use crate::apply::ApplyMode; use crate::aws_context::AwsContext; use crate::converge::named_asg_changes; +use crate::dns::absolute; /// Synchronize a DNS entry with an autoscaling group's running instances. /// @@ -48,7 +49,7 @@ impl Args { let changes = named_asg_changes( &aws_context, &args.autoscaling_group, - &args.dns_name, + &absolute(args.dns_name)?, args.dns_ttl, ) .await?; |
