What kind of configuration block will create an infrastructure object with settings specified within the block?
When you initialize Terraform, where does it cache modules from the public Terraform Registry?
Terraform configuration can only call modules from the public registry.
A provider configuration block is required in every Terraform configuration.
Example:

Only the user that generated a terraform plan may apply it.
Which of these workflows is only enabled by the use of Infrastructure as Code?
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?
Terraform encrypts sensitive values stored in your state file.
When using multiple configurations of the same Terraform provider, what meta-argument must you include in any non-default provider configurations?
Which of the following is not a valid source path for specifying a module?