Created
August 25, 2016 06:42
-
-
Save takeshiyako2/d3823aaa6ad45e60a3bc6186661980f9 to your computer and use it in GitHub Desktop.
Change Route53 IP address by dnscurl.pl
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="UTF-8"?> | |
<ChangeResourceRecordSetsRequest xmlns="https://route53.amazonaws.com/doc/2013-04-01/"> | |
<ChangeBatch> | |
<Changes> | |
<Change> | |
<Action>DELETE</Action> | |
<ResourceRecordSet> | |
<Name>test.hitokoto.co.</Name> | |
<Type>A</Type> | |
<TTL>300</TTL> | |
<ResourceRecords> | |
<ResourceRecord> | |
<Value>153.126.157.62</Value> | |
</ResourceRecord> | |
</ResourceRecords> | |
</ResourceRecordSet> | |
</Change> | |
<Change> | |
<Action>CREATE</Action> | |
<ResourceRecordSet> | |
<Name>test.hitokoto.co.</Name> | |
<Type>A</Type> | |
<TTL>300</TTL> | |
<ResourceRecords> | |
<ResourceRecord> | |
<Value>10.0.0.1</Value> | |
</ResourceRecord> | |
</ResourceRecords> | |
</ResourceRecordSet> | |
</Change> | |
</Changes> | |
</ChangeBatch> | |
</ChangeResourceRecordSetsRequest> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment