From 73f2eaece8c93c8b13a389cb61fc8d56436db31a Mon Sep 17 00:00:00 2001 From: Hari Sekhon Date: Wed, 26 Jun 2024 22:34:23 +0200 Subject: [PATCH] updated terraform.md --- terraform.md | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/terraform.md b/terraform.md index e04e4fee..eb806e19 100644 --- a/terraform.md +++ b/terraform.md @@ -28,6 +28,18 @@ Download the providers and create or connect to the `terraform.tfstate` file: terraform init ``` +Format you code: + +```shell +terraform fmt +``` + +Validate your code: + +```shell +terraform validate + +``` See the plan of additions/deletions/modifications that Terraform would do: ```shell