terraform-generator icon indicating copy to clipboard operation
terraform-generator copied to clipboard

Generate Terraform configurations with Node.js.

Results 2 terraform-generator issues
Sort by recently updated
recently updated
newest added

**Describe the bug** Terraform value from tfg.generate().tf is not pretty **To reproduce** ``` const tfg = new TerraformGenerator(); tfg.provider('aws', { region: 'ap-southeast-1' }); ``` tfg.generate().tf return bellow ``` terraform {...

**Is your feature request related to a problem? Please describe.** As I understood this library allows to generator new configurations. How about extending existing configurations? I guess it needs a...