Giter Site home page Giter Site logo

praveen1664 / translate-terra-form-resources-into-python-classes Goto Github PK

View Code? Open in Web Editor NEW
4.0 2.0 0.0 7 KB

This is the repository for transforming terra-form releases into python classes

Python 100.00%
python terraform infrastructure-as-code devops cloud

translate-terra-form-resources-into-python-classes's Introduction

Translate-Terra-form-resources-into-Python-Classes

terra-py

terra-py

Translate terraform resources into python classes

Example: Python

➜  terra-py git:(master) ✗ python
Python 2.7.10 (default, Jul 14 2015, 19:46:27)
[GCC 4.2.1 Compatible Apple LLVM 6.0 (clang-600.0.39)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>> import json
>>> import tf_plan
>>> 
>>> args = {'region':'us-west-1', 'name':'isa-nat', 'subnetId':'subnet-12345678', 'keyName':'isa_keypair'}
>>> 
>>> nat = tf_plan.tfNatInstance(args)
>>> 
>>> print nat.id
${aws_instance.isa-nat.id}
>>> 
>>> print json.dumps(nat.terraform, indent=2)
{
  "isa-nat": {
    "ami": "ami-004b0f60",
    "instance_type": "t2.micro",
    "provider": "aws.us-west-1",
    "subnet_id": "subnet-12345678",
    "key_name": "isa_keypair",
    "tags": {
      "Name": "isa-nat"
    },
    "associate_public_ip_address": true
  }
}
>>>

translate-terra-form-resources-into-python-classes's People

Contributors

praveen1664 avatar

Stargazers

 avatar  avatar  avatar  avatar

Watchers

Sanjay Arora avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.