Represents a Terraform module, which is a collection of Terraform files. Eg: { "source": "git::https://github.com/my-org/my-repo", "files": [ { "path": "/path/to/file/main.tf", "content": "tf file content" } ] }
| JSON representation |
|---|
{
"source": string,
"files": [
{
object ( |
| Fields | |
|---|---|
source |
The source of the Terraform module. |
files[] |
The files within the Terraform module. |
TerraformFile
Represents a single Terraform file.
| JSON representation |
|---|
{ "path": string, "content": string } |
| Fields | |
|---|---|
path |
The path of the Terraform file. |
content |
The content of the Terraform file. |