A Terraform output that sets the " sensitive " argument to true will not store that value in the state file.
Exhibit:
module " network " {
source = " terraform-google-modules/network/google "
version = " ~ > 11.0 "
}
What version of the source module does Terraform allow with the module block shown in the exhibit?
Where in your Terraform configuration do you specify remote state storage settings?
Which of the following arguments are required when declaring a Terraform output?
What command can you run to generateDOT (Graphviz)formatted data to visualize Terraform dependencies?
Which command add existing resources into Terraform state?
When using Terraform to deploy resources into Azure, which scenarios are true regarding state files? (Choose two.)
Which of the following command would be use to access all of the attributes and details of a resource managed by Terraform?
You use a cloud provider account that is shared with other team members. You previously used Terraform to create a load balancer that listens on port 80. After application changes, you updated the Terraform code to change the port to 443.
You run terraform plan and see that the execution plan shows the port changing from 80 to 443 like you intended and step away to grab some coffee.
In the meantime, another team member manually changes the load balancer port to 443 through the cloud provider console before you get back to your desk.
What will happen when you run terraform apply upon returning to your desk?
Exhibit:
resource " aws_instance " " example " {
ami = " ami-0a123456789abcdef "
instance_type = " t3.micro "
}
You are updating a child module with the resource block shown in the exhibit. The public_ip attribute of the resource needs to be accessible to the parent module. How do you meet this requirement?