API Change:
Added a new property InlineFormat to WorkspaceParameters which specifies the format of the inline Terraform content. It could be HCL or JSON
Change:
If InlineFormat is set to JSON the file which is created is named main.tf.json instead of main.tf
Fixes #165
I have:
[x] Run make reviewable to ensure this PR is ready for review.
How has this code been tested
Wrote a UnitTest and already tested it in my environment
Description of your changes
API Change: Added a new property
InlineFormat
toWorkspaceParameters
which specifies the format of the inline Terraform content. It could beHCL
orJSON
Change: If
InlineFormat
is set toJSON
the file which is created is namedmain.tf.json
instead ofmain.tf
Fixes #165
I have:
make reviewable
to ensure this PR is ready for review.How has this code been tested
Wrote a UnitTest and already tested it in my environment