terraform
Supported Platform
- terraform
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 | Returns the attributes defined in .tfvars and .tfvars.json |
modules | []terraform.module | List 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 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 }