Skip to content

sl1pm4t/k2tf

Folders and files

NameName
Last commit message
Last commit date
May 19, 2024
May 23, 2024
Mar 1, 2019
May 18, 2024
Jul 22, 2019
May 19, 2024
May 19, 2024
Mar 5, 2019
May 18, 2024
Dec 12, 2021
May 23, 2024
May 23, 2024
May 18, 2024
May 18, 2024
May 18, 2024
Apr 28, 2019
May 18, 2024
Apr 3, 2019
Feb 24, 2019

Repository files navigation

k2tf - Kubernetes YAML to Terraform HCL converter

Build Status Go Report Card Release

A tool for converting Kubernetes API Objects (in YAML format) into HashiCorp's Terraform configuration language.

The converted .tf files are suitable for use with the Terraform Kubernetes Provider

asciicast

Installation

Pre-built Binaries

Download Binary from GitHub releases page.

Build from source

See below

Homebrew

$ brew install k2tf

asdf

Use the asdf-k2tf plugin.

Example Usage

Convert a single YAML file and write generated Terraform config to Stdout

$ k2tf -f test-fixtures/service.yaml

Convert a single YAML file and write output to file

$ k2tf -f test-fixtures/service.yaml -o service.tf

Convert a directory of Kubernetes YAML files

$ k2tf -f test-fixtures/

Read & convert Kubernetes objects directly from a cluster

$ kubectl get deployments -o yaml | ./k2tf -o deployments.tf

Building

NOTE Requires a working Golang build environment.

This project uses Golang modules for dependency management, so it can be cloned outside of the $GOPATH.

Clone the repository

$ git clone https://github.com/sl1pm4t/k2tf.git

Build

$ cd k2tf
$ make build

Run Tests

$ make test

Downloads