Name | Description |
---|---|
aws2tf |
aws2tf - automates the importing of existing AWS resources into Terraform and outputs the Terraform HCL code |
cf2tf |
Convert Cloudformation templates to Terraform |
hclfmt |
Format and prettify HCL files |
hcltool |
Command-line tool to validate HCL and pretty-print JSON from it |
iam-policy-json-to-terraform |
Small tool to convert an IAM Policy in JSON format into a Terraform aws_iam_policy_document |
infracost |
Cloud cost estimates for Terraform in pull requests💰📉 Shift FinOps Left! |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# HCL (Terraform >= 0.12.20) | |
locals { | |
combined_cardinal_directions = { | |
northeast = "ne", | |
northwest = "nw", | |
southeast = "se", | |
southwest = "sw", | |
} | |
aws_region_array = split("-", lower(var.aws_region_name)) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
*~ |
OlderNewer