Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/fmalk/terraform-plantuml
Generate PlantUML Images from a Terraform State file
https://github.com/fmalk/terraform-plantuml
aws plantuml plantuml-generator terraform
Last synced: about 9 hours ago
JSON representation
Generate PlantUML Images from a Terraform State file
- Host: GitHub
- URL: https://github.com/fmalk/terraform-plantuml
- Owner: fmalk
- License: mit
- Created: 2023-01-23T04:21:48.000Z (almost 2 years ago)
- Default Branch: master
- Last Pushed: 2024-05-26T01:20:36.000Z (6 months ago)
- Last Synced: 2024-09-19T09:47:56.306Z (about 2 months ago)
- Topics: aws, plantuml, plantuml-generator, terraform
- Language: JavaScript
- Homepage:
- Size: 1.52 MB
- Stars: 38
- Watchers: 3
- Forks: 2
- Open Issues: 6
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# terraform-plantuml
![Version](https://img.shields.io/github/package-json/v/fmalk/terraform-plantuml)
![License](https://img.shields.io/github/license/fmalk/terraform-plantuml)
[![Codacy Badge](https://app.codacy.com/project/badge/Grade/5131e9caa5f842d6ab440adfbb4ada30)](https://app.codacy.com/gh/fmalk/terraform-plantuml/dashboard?utm_source=gh\&utm_medium=referral\&utm_content=\&utm_campaign=Badge_grade)
![Depfu](https://img.shields.io/depfu/dependencies/github/fmalk/terraform-plantuml)Generate PlantUML Images from a Terraform State file.
![Example](gallery/futurice_terraform_examples_aws_vpc_msk.png)
See [Examples](/examples) for Terraform samples and their image outputs.
# Considerations:
Take precautions when using State files (as they are open JSON files, most likely with secrets).
This package does **NOT** require Internet connection to run, nor it stores any parsed info anywhere. Its only effect is to generate two output files: .puml and optionally .png files. Any possible sensitive value is ignored, it can even be redacted beforehand if Security procedures demand so.
Safest way to generate a valid TF State file is to run `terraform init, plan & apply` locally, not logged to any real service, using a tool like LocalStack.
# Steps
* Install `npm i -g tfpuml`
* Download a **PlantUML JAR** from official sources ([Releases](https://github.com/plantuml/plantuml/releases))
* This packages comes with a script `tfpuml-download-plantuml`, run it to download a copy into this package folder
* Some IDEs are able to visualize PlantUML `.puml` files using plugins
* Copy your TF state file, it is usually named `terraform.tfstate`
* Run `tfpuml` where your TF state file resides
* Output: `output.puml`
* Run `tfpuml --image` to run and export a PNG diagram
* Or, run `java -jar plantuml.jar output.puml` using the PUML file from previous step
* Output: `output.png`## Options
* `tfpuml `
* Defaults are `terraform.tfstate` and `output.puml`
* `tfpuml --image` runs the PlantUML visualization graphic lib at the end and outputs an `output.png` image file
* `tfpuml --no-check` ignores checking for Terraform Version, use it for state files versions < 1.30 (might run into issues)See `tfpuml --help` for further options
# Support
* AWS
* Buckets
* IAM Users
* Regions
* VPCs
* AZs
* Subnets
* Gateways like IGWs, NATs, and others
* EC2
* On Demand, Spot
* Lambdas
* RDS
* ECS (partial)
* Cluster# Limitations
Since we're using PlantUML as both input and visualization, it doesn't support intersecting groups - it is a limitation of [GraphViz](https://stackoverflow.com/questions/49241869/graphviz-intersecting-but-non-recursive-clusters/62467700) and not really incentivized by PlantUML (or C4 Model) design. For this project it means groups that usually intersect with AZs like Security Groups, Beanstalk or Clusters have to rely on some group repetition.
To avoid cluttering the diagram, some AWS resources are intentionally left out, like Security Groups, IAM policies/roles and CloudWatch Logs.
# Roadmap
* ECS Services & Tasks positioned at their subnets
* More examples from `terraform-aws-modules`# Acknowledgements
* [AWS Icons for PlantUML](https://github.com/awslabs/aws-icons-for-plantuml) - This project is really a tool built on top of it - only possible because of their amazing job.