Skip to content
cheatsheet
home
/
cv
/
weblog
/
cheatsheet
/
proxy
/
vpn
/
status
/
links
EN
RU
☾
New version available
reload
×
cheatsheet
/
terraform
/
List state resources
List state resources
terraform
Filter state resources by pattern
terraform state list | grep <pattern>
⎘ copy
#terraform
more terraform
all 43 commands →
Format all files
terraform fmt -recursive
Validate configuration
terraform validate
Plan with var file
terraform plan -var-file=prod.tfvars -out=prod.tfplan
Apply saved plan
terraform apply prod.tfplan
Show resource in state
terraform state show 'aws_instance.web[0]'