-
-
Save tomislacker/08ac76e6f516a3f91fbab3a2e0a8965c to your computer and use it in GitHub Desktop.
Delete a Route 53 Record Set in AWS CLI
This file contains 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
#!/bin/sh | |
# NOTE: | |
# Make sure that the value of Name, Type, TTL are the same with your DNS Record Set | |
HOSTED_ZONE_ID=<YOUR_HOSTED_ZONE_ID> | |
RESOURCE_VALUE=<YOUR_DNS_RESOURCE_VALUE-ex:IP or dns> | |
DNS_NAME=<YOUR_DNS_NAME-ex: subdomain.domain.com> | |
RECORD_TYPE=<DNS_RECORD_TYPE-ex: A, CNAME> | |
TTL=<TTL_VALUE> | |
JSON_FILE=`mktemp` | |
( | |
cat <<EOF | |
{ | |
"Comment": "Delete single record set", | |
"Changes": [ | |
{ | |
"Action": "DELETE", | |
"ResourceRecordSet": { | |
"Name": "$DNS_NAME.", | |
"Type": "$RECORD_TYPE", | |
"TTL": $TTL, | |
"ResourceRecords": [ | |
{ | |
"Value": "${RESOURCE_VALUE}" | |
} | |
] | |
} | |
} | |
] | |
} | |
EOF | |
) > $JSON_FILE | |
echo "Deleting DNS Record set" | |
aws route53 change-resource-record-sets --hosted-zone-id ${HOSTED_ZONE_ID} --change-batch file://$JSON_FILE | |
echo "Deleting record set ..." | |
echo | |
echo "Operation Completed." | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment