delete_txt_record
Delete a Route 53 TXT record to clean up an ACME DNS-01 challenge. Uses a dry run unless confirm=true, and looks up the existing record first.
Instructions
Delete the Route 53 TXT record for a domain - e.g. to clean up an ACME DNS-01 challenge record left behind by create_txt_record or issue_wildcard_cert. Destructive - requires confirm:true to actually act; without it, returns what would happen and changes nothing. Looks up the exact existing record first rather than guessing its TTL/value. For a CNAME record, use delete_domain_record instead.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| domain | Yes | Record name whose TXT record should be deleted, e.g. _acme-challenge.mysite.julcap.net | |
| confirm | No | Must be true to actually delete; false (default) is a dry run |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| message | Yes | ||
| success | Yes | ||
| change_id | No | Route 53 change ID, useful for polling propagation status | |
| change_status | No | Route 53 change status, e.g. PENDING or INSYNC |