Complete the code to assign a value to the variable 'region' in a Terraform.tfvars file.
region = "[1]"
The Terraform.tfvars file assigns values to variables. Here, region is set to a string value representing the cloud region.
Complete the code to assign a list of availability zones in Terraform.tfvars format.
availability_zones = [1]Lists in Terraform.tfvars are written with square brackets and quoted strings for each item.
Fix the error in the Terraform.tfvars assignment for the variable 'enable_logging'.
enable_logging = [1]Boolean values in Terraform.tfvars are written without quotes and in lowercase.
Fill both blanks to assign a map variable in Terraform.tfvars format.
tags = { [1] = "Production", [2] = "WebApp" }Maps in Terraform.tfvars use key-value pairs inside curly braces. Keys are unquoted strings and values are quoted strings.
Fill all three blanks to assign variables of different types in Terraform.tfvars.
instance_count = [1] instance_type = "[2]" enabled = [3]
Numbers are written without quotes, strings with quotes, and booleans without quotes in Terraform.tfvars.