MultipleChoice
What is the provider for this fictitious resource?
OptionsMultipleChoice
Terraform variables and outputs that set the 'description' argument will store that description in the state file.
OptionsMultipleChoice
What command does Terraform require the first time you run it within a configuration directory?
OptionsMultipleChoice
Which provisioner invokes a process on the resource created by Terraform?
OptionsMultipleChoice
You run a local-exec provisioner in a null resource called null_resource.run_script and realize that you need to rerun the script.
Which of the following commands would you use first?
OptionsMultipleChoice
How is the Terraform remote backend different than other state backends such as S3, Consul, etc.?
OptionsMultipleChoice
The terraform.tfstate file always matches your currently built infrastructure.
OptionsMultipleChoice
One remote backend configuration always maps to a single remote workspace.
OptionsMultipleChoice
In the example below, where is the value of the DNS record's IP address originating from?
1. resource 'aws_route53_record' 'www'
2. {
3. zone_id = aws_route53_zone.primary.zone_id
5. type = 'A'
6. ttl = '300'
7. records = [module.web_server.instance_ip_address]
8. }
OptionsMultipleChoice
Which task does teraform ini- not perform?
Options