Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@brave/cf2tf

Package Overview
Dependencies
Maintainers
8
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@brave/cf2tf

A Terraform importer for Cloudflare resources inspired by terraforming

  • 1.0.0
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
1
decreased by-85.71%
Maintainers
8
Weekly downloads
 
Created
Source

cf2tf: Cloudflare to Terraform

A Terraform importer for Cloudflare resources inspired by terraforming.

Installation

git clone https://github.com/brave/cf2tf
npm install -g

Prerequisites

You must export your Cloudflare credentials:

export CLOUDFLARE_TOKEN=xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
export CLOUDFLARE_EMAIL=xxx@xxx.xxx

Usage

$ cf2tf --help
Commands:
  dns  import dns records

Options:
  --help  Show help                                                    [boolean]
  --tfstate  output tfstate                                     [default: false]
$ cf2tf dns --help
cf2tf dns

Options:
  --help     Show help                                                 [boolean]
  --tfstate  output tfstate                                     [default: false]
  --zone     limit to a particular zone by name                    [default: ""]

Example

The following example shows simulated output for a domain mysite.com which has a single record, an apex CNAME to mysite.org

$ cf2tf dns --zone mysite.com > main.tf
$ cat main.tf
{
    "resource": {
        "cloudflare_record": {
            "mysite_com_CNAME_mysite_org": {
                "domain": "mysite.com",
                "name": "mysite.com",
                "value": "mysite.org",
                "type": "CNAME",
                "proxied": false
            }
        }
    }
}
$ cf2tf dns --zone mysite.com --tfstate > terraform.tfstate
$ cat terraform.tfstate
{
    "version": 1,
    "serial": 1,
    "modules": [
        {
            "path": [
                "root"
            ],
            "outputs": {},
            "resources": {
                "cloudflare_record.mysite_com_CNAME_mysite_org": {
                    "type": "cloudflare_record",
                    "depends_on": [],
                    "primary": {
                        "id": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx",
                        "attributes": {
                            "domain": "mysite.com",
                            "hostname": "mysite.com",
                            "id": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx",
                            "name": "mysite.com",
                            "priority": "0",
                            "proxied": "false",
                            "ttl": "1",
                            "type": "CNAME",
                            "value": "mysite.org",
                            "zone_id": "XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX"
                        },
                        "meta": {
                            "schema_version": "1"
                        },
                        "tainted": false
                    },
                    "deposed": [],
                    "provider": ""
                }
            },
            "depends_on": []
        }
    ]
}

Notes

Unlike terraforming, cf2tf outputs in the Terraform JSON configuration format. This can easily converted to hcl format via a tool like json2hcl.

FAQs

Package last updated on 08 Feb 2018

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc