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

Unlimited Access

Get Unlimited Contributor Access to the all ExamTopics Exams!
Take advantage of PDF Files for 1000+ Exams along with community discussions and pass IT Certification Exams Easily.

Exam Terraform Associate topic 1 question 2 discussion

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

One remote backend configuration always maps to a single remote workspace.

  • A. True
  • B. False
Show Suggested Answer Hide Answer
Suggested Answer: A 🗳️
Reference:
https://www.terraform.io/docs/language/settings/backends/remote.html

Comments

Chosen Answer:
This is a voting comment (?) , you can switch to a simple comment.
Switch to a voting comment New
Zam88
Highly Voted 1 year, 10 months ago
Selected Answer: B
correct B
upvoted 9 times
...
liuyomz
Most Recent 1 week, 5 days ago
Selected Answer: B
B. prefix switching
upvoted 1 times
...
6957dbd
1 month, 3 weeks ago
Selected Answer: B
The prefix switch is key here: prefix - (Optional) A prefix used in the names of one or more remote workspaces, all of which can be used with this configuration. The full workspace names are used in Terraform Cloud, and the short names (minus the prefix) are used on the command line for Terraform CLI workspaces. If omitted, only the default workspace can be used. This option conflicts with name. To use multiple remote workspaces, set workspaces.prefix to a prefix used in all of the desired remote workspace names. For example, set prefix = "networking-" to use Terraform cloud workspaces with names like networking-dev and networking-prod. This is helpful when mapping multiple Terraform CLI workspaces used in a single Terraform configuration to multiple Terraform Cloud workspaces. The backend configuration requires either name or prefix. Omitting both or setting both results in a configuration error.
upvoted 3 times
...
TigerInTheCloud
4 months, 2 weeks ago
Selected Answer: B
https://developer.hashicorp.com/terraform/language/settings/backends/remote "To use multiple remote workspaces, set workspaces.prefix to a prefix used in all of the desired remote workspace names. For example, set prefix = "networking-" to use Terraform cloud workspaces with names like networking-dev and networking-prod. This is helpful when mapping multiple Terraform CLI workspaces used in a single Terraform configuration to multiple Terraform Cloud workspaces."
upvoted 4 times
...
Spandrop
4 months, 3 weeks ago
Selected Answer: B
1 workspace -> 1 backend 1 backend -> multiple workspaces
upvoted 4 times
...
luxdolorosa
5 months, 3 weeks ago
Selected Answer: B
I am working with GitLab, and I can create multiple instances within a single backend space
upvoted 3 times
...
NKSINGH
5 months, 4 weeks ago
Correct B
upvoted 1 times
...
esuarve
7 months, 1 week ago
Selected Answer: B
Your explanation actually states that a remote backend can work with multiple similarly-named remote workspaces (like networking-dev and networking-prod) The answer A would not allow this
upvoted 2 times
...
arnabsinha4u
7 months, 2 weeks ago
Selected Answer: B
correct B https://developer.hashicorp.com/terraform/language/settings/backends/remote#workspaces
upvoted 1 times
...
ledjo
8 months, 1 week ago
B. A remote backend configuration is used to define where the Terraform state is stored, and it can be shared by multiple workspaces, each of which maintains its own separate state.
upvoted 2 times
...
paromanu007
8 months, 3 weeks ago
The remote backend can work with either a single remote Terraform Cloud workspace, or with multiple similarly-named remote workspaces (like networking-dev and networking-prod). The workspaces block of the backend configuration determines which mode it uses: Correct B
upvoted 1 times
...
Jayanth
9 months, 1 week ago
B. False
upvoted 1 times
...
Bere
9 months, 1 week ago
Selected Answer: B
1) Example using workspaces.name This example demonstrates the use of a single remote Terraform Cloud workspace by specifying the workspace name. terraform { ... workspaces { name = "networking-prod" } } } In this configuration, all the Terraform commands will be applied to the networking-prod workspace in Terraform Cloud. 2) Example using workspaces.prefix This example demonstrates the use of multiple remote Terraform Cloud workspaces that share a common prefix. terraform { ... workspaces { prefix = "networking-" } } } In this configuration, Terraform commands will apply to any workspace that starts with networking-, such as networking-dev, networking-prod, networking-test, etc. The specific workspace that the commands apply to is determined by the currently selected Terraform CLI workspace. You can switch between workspaces using the terraform workspace select command.
upvoted 2 times
...
Busi57
9 months, 2 weeks ago
Selected Answer: B
the correct answer B
upvoted 1 times
...
ska_torrent_430
10 months, 4 weeks ago
Selected Answer: B
Correct B
upvoted 1 times
...
abhi6199
11 months ago
Selected Answer: B
The correct Answer is B. https://developer.hashicorp.com/terraform/language/settings/backends/remote#workspaces
upvoted 1 times
...
SIAMIANJI
11 months, 1 week ago
Selected Answer: B
The remote backend can work with either a single remote Terraform Cloud workspace, or with multiple similarly-named remote workspaces (like networking-dev and networking-prod). The workspaces block of the backend configuration determines which mode it uses: To use a single remote Terraform Cloud workspace, set workspaces.name to the remote workspace's full name (like networking-prod). To use multiple remote workspaces, set workspaces.prefix to a prefix used in all of the desired remote workspace names. For example, set prefix = "networking-" to use Terraform cloud workspaces with names like networking-dev and networking-prod. This is helpful when mapping multiple Terraform CLI workspaces used in a single Terraform configuration to multiple Terraform Cloud workspaces. https://developer.hashicorp.com/terraform/language/settings/backends/remote
upvoted 1 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 ...