Welcome to ExamTopics
ExamTopics Logo
- Expert Verified, Online, Free.
exam questions

Exam Terraform Associate All Questions

View all questions & answers for the Terraform Associate exam

Exam Terraform Associate topic 1 question 225 discussion

Actual exam question from HashiCorp's Terraform Associate
Question #: 225
Topic #: 1
[All Terraform Associate Questions]

Terraform configuration (including any module references) can contain only one Terraform provider type.

  • A. True
  • B. False
Show Suggested Answer Hide Answer
Suggested Answer: B 🗳️

Comments

Chosen Answer:
This is a voting comment (?) , you can switch to a simple comment.
Switch to a voting comment New
Nunyabiznes
Highly Voted 1 year, 7 months ago
Selected Answer: B
provider "aws" { region = "us-west-2" access_key = "ACCESS_KEY" secret_key = "SECRET_KEY" } provider "google" { project = "my-gcp-project" credentials = "path/to/google/credentials.json" }
upvoted 7 times
...
camps
Most Recent 1 year, 7 months ago
Selected Answer: B
B. False A Terraform configuration can contain multiple provider types. Providers in Terraform are responsible for understanding API interactions and exposing resources for various cloud platforms and infrastructure services. You can use multiple providers in a single Terraform configuration to manage resources across different platforms or services.
upvoted 3 times
...
tbhtp
1 year, 7 months ago
Selected Answer: B
A Terraform configuration can contain multiple provider blocks, each associated with a different provider type and version.
upvoted 1 times
...
SilentMilli
1 year, 8 months ago
Selected Answer: B
A Terraform configuration can contain multiple provider blocks, each associated with a different provider type and version. This allows you to use multiple providers in a single Terraform configuration, such as using different cloud providers for different resources. For example, you might use the AWS provider for your EC2 instances and the Azure provider for your virtual machines. You can define each provider block with its own configuration settings, such as access keys or region, and reference the appropriate provider block in the resource blocks that use that provider.
upvoted 2 times
...
Community vote distribution
A (35%)
C (25%)
B (20%)
Other
Most Voted
A voting comment increases the vote count for the chosen answer by one.

Upvoting a comment with a selected answer will also increase the vote count towards that answer by one. So if you see a comment that you already agree with, you can upvote it instead of posting a new comment.

SaveCancel
Loading ...