Posted by: Pdfprep
Post Date: March 4, 2021
The Terraform language supports a number of different syntaxes for comments. Select all that are supported. (select three)
A . #
B . /* and */
C . <* and *>
D . //
Answer: A,B,D
Explanation:
Terraform supports the #, //, and /*..*/ for commenting Terraform configuration files. Please use them when writing Terraform so both you and others who are using your code have a full understanding of what the code is intended to do. https://www.terraform.io/docs/configuration/syntax.html#comments
Leave a Reply