A resource block is shown in the Exhibit space of this page. What is the Terraform resource name of the resource block?
A Terraform output that sets the "sensitive" argument to true will not store that value in the state file.
Which of the following ate advantages of using infrastructure as code (laC) instead of provisioning with a graphical user interface (GUI)? Choose two correct answers.
Terraform variables and outputs that set the description argument will store that description in the state file.
What are some benefits of using Sentinel with Terraform Cloud/Terraform Cloud? Choose three correct answers.
What does Terraform not reference when running a terraform apply -refresh-only ?
What command can you run to generateDOT (Graphviz)formatted data to visualize Terraform dependencies?
A module block is shown in the Exhibit space of this page. When you use a module block to reference a module from the Terraform Registry such as the one in the example, how do you specify version 1.0.0 of the module?
Which provider authentication method prevents credentials from being stored in the state file?
You want to define a single input variable to capture configuration values for a server. The values must represent memory as a number, and the server name as a string.
Which variable type could you use for this input?
You have deployed a new webapp with a public IP address on a cloud provider. However, you did not create any outputs for your code. What is the best method to quickly find the IP address of the resource you deployed?
You much initialize your working directory before running terraform validate.
Your DevOps team is currently using the local backend for your Terraform configuration. You would like to move to a remote backend to store the state file in a central location. Which of the following backends would not work?
You just upgraded the version of a provider in an existing Terraform project. What do you need to do to install the new provider?
Which of the following isnotan advantage of using Infrastructure as Code (IaC) operations?
Which of these ate features of Terraform Cloud? Choose two correct answers.
You are using a networking module in your Terraform configuration with the name label my-network. In your main configuration you have the following code:
When you run terraform validate, you get the following error:
What must you do to successfully retrieve this value from your networking module?
What is the Terraform style convention for indenting a nesting level compared to the one above it?
terraform validate confirms that your infrastructure matches the Terraform state file.
A Terraform backend determines how Terraform loads state and stores updates when you execute which command?
You have used Terraform lo create an ephemeral development environment in the (loud and are now ready to destroy all the Infrastructure described by your Terraform configuration To be safe, you would like to first see all the infrastructure that Terraform will delete.
Which command should you use to show all of the resources that mil be deleted? Choose two correct answers.
You decide to move a Terraform state file to Amazon S3 from another location. You write the code below into a file called backend.tf.
Which command will migrate your current state file to the new S3 remote backend?
Which of the following is true about terraform apply?(Pick 2 correct responses)
How could you reference an attribute from the vsphere_datacenter data source for use with the datacenter_id argument within the vsphere_folder resource in the following configuration?
A resource block is shown in the Exhibit section of this page. How would you reference the attribute name of this resource in HCL?
How would you reference the volume IDs associated with the ebs_block_device blocks in this configuration?
What type of block is used to construct a collection of nested configuration blocks?
Once you configure a new Terraform backend with a terraform code block, which command(s) should you use to migrate the state file?
Which of the following command would be use to access all of the attributes and details of a resource managed by Terraform?
You have declared a variable called var.list which is a list of objects that all have an attribute id . Which options will produce a list of the IDs? Choose two correct answers.
Before you can use a remote backend, you must first execute terra-form init.
A senior admin accidentally deleted some of your cloud instances. What will Terraform do when you run terraform apply?
Outside of the required_providers block, Terraform configurations always refer to providers by their local names.
Changing the Terraform backend from the default "local" backend to a different one after performing your first terrafom apply is:
What feature stops multiple users from operating on the Terraform state at the same time?
Which of the following methods, used to provision resources into a public cloud, demonstrates the concept of infrastructure as code?
You are working on some new application features and you want to spin up a copy of your production deployment to perform some quick tests. In order to avoid having to configure a new state backend, what open source Terraform feature would allow you create multiple states but still be associated with your current code?
How would you output returned values from a child module in the Terraform CLI output?
Which command should you run to check if all code in a Terraform configuration that references multiple modules is properly formatted without making changes?
How can a ticket-based system slow down infrastructure provisioning and limit the ability to scale? Choose two correct answers.
As a developer, you want to ensure your plugins are up to date with the latest versions. Which Terraform command should you use?
In Terraform HCL, an object type of object({name=string, age-number}) would match this value.