Which of the following provider blocks would allow you to do this?

You ate creating a Terraform configuration which needs to make use of multiple providers, one for AWS and one for Datadog. Which of the following provider blocks would allow you to do this? A) B) C) D) A . Option AB . Option BC . Option CD . Option DView...

March 21, 2025 No Comments READ MORE +

Provides a browsable directory

Provides a browsable directoryA . Subfolder within a workspaceB . Generic git repositoryC . Terraform Cloud private registryD . Public Terraform module registryView AnswerAnswer: C Explanation: This is the method for sharing Terraform configurations that fulfills the following criteria: Keeps the configurations confidential within your organization Supports Terraform’s semantic version...

March 13, 2025 No Comments READ MORE +

Which parameters does terraform import require? Choose two correct answers.

Which parameters does terraform import require? Choose two correct answers.A . ProviderB . Resource IDC . Resource addressD . PathView AnswerAnswer: B,C Explanation: These are the parameters that terraform import requires, as they allow Terraform to identify the existing resource that you want to import into your state file, and...

March 11, 2025 No Comments READ MORE +

Outside of the required_providers block, Terraform configurations always refer to providers by their local names.

Outside of the required_providers block, Terraform configurations always refer to providers by their local names.A . TrueB . FalseView AnswerAnswer: B Explanation: Outside of the required_providers block, Terraform configurations can refer to providers by either their local names or their source addresses. The local name is a short name that...

March 10, 2025 No Comments READ MORE +

You ate making changes to existing Terraform code to add some new infrastructure. When is the best time to run terraform validate?

You ate making changes to existing Terraform code to add some new infrastructure. When is the best time to run terraform validate?A . After you run terraform apply so you can validate your infrastructureB . Before you run terraform apply so you can validate your provider credentialsC . Before you...

March 10, 2025 No Comments READ MORE +

Module version is required to reference a module on the Terraform Module Registry.

Module version is required to reference a module on the Terraform Module Registry.A . TrueB . FalseView AnswerAnswer: B Explanation: Module version is optional to reference a module on the Terraform Module Registry. If you omit the version constraint, Terraform will automatically use the latest available version of the module

March 9, 2025 No Comments READ MORE +

When you use a remote backend that needs authentication, HashiCorp recommends that you:

When you use a remote backend that needs authentication, HashiCorp recommends that you:A . Write the authentication credentials in the Terraform configuration filesB . Keep the Terraform configuration files in a secret storeC . Push your Terraform configuration to an encrypted git repositoryD . Use partial configuration to load the...

March 8, 2025 No Comments READ MORE +

Running terraform fmt without any flags in a directory with Terraform configuration files check the formatting of those files without changing their contents.

Running terraform fmt without any flags in a directory with Terraform configuration files check the formatting of those files without changing their contents.A . TrueB . FalseView AnswerAnswer: B Explanation: Running terraform fmt without any flags in a directory with Terraform configuration files will not check the formatting of those...

March 8, 2025 No Comments READ MORE +

How do you specify a module’s version when publishing it to the public terraform Module Registry?

How do you specify a module’s version when publishing it to the public terraform Module Registry?A . Configuration it in the module's Terraform codeB . Mention it on the module's configuration page on the Terraform Module RegistryC . The Terraform Module Registry does not support versioning modulesD . Tag a...

March 7, 2025 No Comments READ MORE +

What does state looking accomplish?

What does state looking accomplish?A . Prevent accidental Prevent accident deletion of the state fileB . Blocks Terraform commands from modifying, the state fileC . Copies the state file from memory to diskD . Encrypts any credentials stored within the state fileView AnswerAnswer: B Explanation: This is what state locking...

March 5, 2025 No Comments READ MORE +