31 Which of the following is the correct way to pass the value in the variable num_servers into a module with the input servers?

A. servers = num_servers

B. servers = variable.num_servers

C. servers = var(num_servers)

D. servers = var.num_servers

32 A Terraform provisioner must be nested inside a resource configuration block.

A. True

B. False

33 Terraform can run on Windows or Linux, but it requires a Server version of the Windows operating system.

A. True

B. False

34 What does the default “local” Terraform backend store?

A. tfplan files

B. Terraform binary

C. Provider plugins

D. State file

35 You have multiple team members collaborating on infrastructure as code (IaC) using Terraform, and want to apply formatting standards for readability.
How can you format Terraform HCL (HashiCorp Configuration Language) code according to standard Terraform style convention?

A. Run the terraform fmt command during the code linting phase of your CI/CD process

B. Designate one person in each team to review and format everyone’s code

C. Manually apply two spaces indentation and align equal sign “=” characters in every Terraform file (*.tf)

D. Write a shell script to transform Terraform files using tools such as AWK, Python, and sed