Jason
Jason
Your question is for terraform itself. This project is an Azure Devops extension which calls terraform.
Oh sorry. I sometimes get terraform questions here. I’ll have a look.
Hi, I'm using this on Azure myself and would love to have this feature as well. One thing though: this will help with the creation of new connections but what...
Why can't your SCM do this? There are plenty of tools for doing diffs, I don't see the added complexity to this tool to support this being worthwhile and it...
In the meantime, this can be done via the `.Module` field. The structure is defined [here](https://pkg.go.dev/github.com/terraform-docs/terraform-docs/terraform#Module). E.g. I wanted to have a table of just the resources (the data sources...
Where does the name come from though? The name of the parent directory? Can that always be assumed? What happens if someone checks out the module to a different name?...
You can completely replace anything in the content. You can see how everything was made e.g. [here](https://github.com/terraform-docs/terraform-docs/blob/master/format/templates/markdown_document.tmpl) (or maybe [this](https://github.com/terraform-docs/terraform-docs/blob/master/format/templates/markdown_document_inputs.tmpl) is a more clear example). You wouldn't need as much...
In the meantime you could do something like this I think? ```` ## Examples {{ range list "exampleA" "exampleB" }} ```hcl {{ print "examples/%s/main.tf" . | include }} ``` {{-...
The `.URL` function is creating this URL. I just checked my own provider (namep) and it would work as expected. There is something wrong with this custom provider you're using...
You can do this right now by adding `data-sources` to `sections.hide`. This will stop showing them in the resources. Then you can do e.g. (for table format): ``` ## Data...