Skip to content

Instantly share code, notes, and snippets.

@amiri
Created October 1, 2012 22:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save amiri/3814924 to your computer and use it in GitHub Desktop.
Save amiri/3814924 to your computer and use it in GitHub Desktop.
Current ignores in CE::Amazon::Route53
my @originals = grep { $_->type !~ /^(NS|SOA)$/ } @$original_rrsets;
# The current version of Net::Amazon::Route53 does not support A "ALIAS"
# records, so set them manually in the AWS console and strip them out here.
@originals = grep { $_->values->[0] !~ /This resource record set includes an attribute that is unsupported on this Route 53 endpoint/ } @originals;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment