[Terraform] basic

terraform plan

you can simply type terraform plan But you also can check that you use

$ terraform plan -out ${FILE_NAME}

# e.g
$ terraform plan -out tfplan

then you will able to get the file

terraform apply

you can just type terraform apply

But you can also type

$ terraform apply ${FILE_NAME}

# e.g
$ terraform apply tfplan

Last updated

Was this helpful?