Skip to main content

Converts an input CSV file from route53-transfer to a JSON file which can be then used in a Terraform google_dns_record_set

Project description

Route53 recordset converter

This software is aimed to convert the input CSV file from route53-transfer to a JSON file which can be then used in a Terraform google_dns_record_set

Requirements

  • Python 3.7.9 or higher

Installation

pip install route53-recordset-converter

Usage

route53-transfer dump example.com example.com.csv
  • Convert the CSV file to a JSON one
route53-recordset-converter example.com.csv example.com.json
  • Use the JSON in Terraform
locals {
    dns_records = jsondecode(file("example.com.json"))
}

resource "google_dns_record_set" "dns_records" {
    for_each     = { for index, dns_record in local.dns_records : index => dns_record }
    name         = each.value.name
    managed_zone = "dns-zone-name"
    type         = each.value.type
    ttl          = each.value.ttl
    rrdatas      = each.value.value
}

CSV Formats

The following CSV formats are supported:

  • aws: AWS Route 53 standard format, as outputted by route53-transfer
  • register.it: Register.it format, as exported by www.register.it

In Python

You can convert the CSV without dumping them to a JSON.

from route53_recordset_converter import Route53RecordsetConverter

c = Route53RecordsetConverter()

converted_results = c.convert("example.com.csv")

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

route53-recordset-converter-0.2.4.tar.gz (3.3 kB view hashes)

Uploaded Source

Built Distribution

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page