terraform
Supported platform
- terraform-hcl
Maturity
experimental
Description
Terraform configuration files
Fields
ID | TYPE | DESCRIPTION |
---|---|---|
files | []terraform.file | Access to individual files including .tf and .tf.json files |
tfvars | dict | The attributes defined in .tfvars and .tfvars.json |
modules | []terraform.module | All referenced Terraform modules |
blocks | []terraform.block | Raw HCL blocks |
providers | []terraform.block | Provider blocks |
datasources | []terraform.block | Data sources blocks |
resources | []terraform.block | All blocks with the type resource |
variables | []terraform.block | Variable blocks |
outputs | []terraform.block | Output blocks |
Examples
Display all Terraform blocks and their arguments
terraform.blocks { nameLabel arguments }
Display all data blocks
terraform.datasources { nameLabel arguments }
Display all resource blocks
terraform.resources { nameLabel arguments }