Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to comment out Terraform code on VS Code

I wish to find out how to comment out Terraform code on VS Code. I am new to the world of coding, and AWS. I am still learning to use Terraform.

like image 208
ngum ebune Avatar asked Jan 23 '26 13:01

ngum ebune


2 Answers

Attaching the Terraform documentation for commenting

The Terraform language supports three different syntaxes for comments:

# begins a single-line comment, ending at the end of the line.

// also begins a single-line comment, as an alternative to #.

/* and */ are start and end delimiters for a comment that might span over multiple lines.

The # single-line comment style is the default comment style and should be used in most cases. Automatic configuration formatting tools may automatically transform // comments into # comments, since the double-slash style is not idiomatic.

like image 85
Guy Avatar answered Jan 26 '26 04:01

Guy


The most common way to comment out code in Terraform is to add a hash at the start of the lines:

variable "var_1" {
  type    = string
  default = "value-1"
}

# variable "var_2" {
#   type    = string
#   default = "value-2"
# }

In the above example, Terraform will create the variable called var_1, but will not create the variable called var_2 because that variable has been commented out.

You can check out the Terraform Configuration Syntax.

like image 27
Alex Ringelmann Avatar answered Jan 26 '26 04:01

Alex Ringelmann



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!