Metadata-Version: 2.1
Name: terraobject
Version: 0.0.1
Summary: Terraobject package to share variables between terrascript components
Home-page: https://github.com/byjg/terraobject
Author: Joao Gilberto Magalhaes
Author-email: joao@byjg.com.br
License: MIT
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown

# Terraobject

Terraobject package to share variables between terrascript components

You can use the Terraobject to parameter to several classes and share resources to be used by other terraform resources. 

# Examples:

```python
# Create the reference
from terraobject import Terraobject

# Import the terrascript resources you need
from terrascript import provider
from terrascript.digitalocean.d import digitalocean_volume

# Create the object
o = Terraobject()

# Add the providers, resources, data, as usual
o.terrascript.add(provider("digitalocean", token="tokentoken"))

# Get some info (e.g. data) and share to be used on other commands
persistent_volume = digitalocean_volume("persistent_volume", name="volume-nyc3-01", region="abc")
o.terrascript.add(persistent_volume)
o.shared['persistent_volume'] = persistent_volume

# And you can use and another place:
o.shared['persistent_volume'].name

# Dump the XML
print(o.terrascript.dump())
```

# More information about terrascript:
https://github.com/mjuenema/python-terrascript



