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 45 discussion

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

Only the user that generated a plan may apply it.

  • 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
Jaro3000
Highly Voted 1 year, 11 months ago
I suppose they do it by purpose so we discuss it
upvoted 21 times
vibzr2023
1 month, 3 weeks ago
you made my day :)
upvoted 1 times
...
kopper2019
1 year, 9 months ago
this made me laugh :)
upvoted 4 times
...
...
yuvifose
Highly Voted 1 year, 10 months ago
B is correct, a plan can be stored as a file and another person can execute the plan file
upvoted 10 times
...
Bere
Most Recent 9 months, 3 weeks ago
Selected Answer: B
For example, in a continuous deployment pipeline, one job might run terraform plan -out=plan.out to generate the plan, and this plan could be applied later in a separate job (potentially triggered manually for additional control) using terraform apply plan.out. These jobs might be run under different user accounts, or even on different machines. As described here: https://developer.hashicorp.com/terraform/tutorials/automation/automate-terraform?utm_source=WEBSITE&utm_medium=WEB_IO&utm_offer=ARTICLE_PAGE&utm_content=DOCS Steps 1, 2 and 4 can be carried out using the familiar Terraform CLI commands, with some additional options: terraform init -input=false to initialize the working directory. terraform plan -out=tfplan -input=false to create a plan and save it to the local file tfplan. terraform apply -input=false tfplan to apply the plan stored in the file tfplan.
upvoted 4 times
...
tfdestroy
9 months, 3 weeks ago
Selected Answer: B
B. False Terraform does not restrict who can apply a generated plan based on who created it. As long as the person applying the plan has appropriate permissions to modify the resources in question, they should be able to apply the plan. This means that multiple team members can collaborate on Terraform configurations and one person's plan can be applied by someone else. However, it's important to note that good practices might involve controlling who has the necessary permissions to apply changes, especially in production environments, to ensure that changes are reviewed and approved before being applied.
upvoted 1 times
...
junk4share
10 months, 2 weeks ago
Selected Answer: B
b is the answer
upvoted 1 times
...
kiran15789
1 year ago
Selected Answer: A
aws_instance.example[*].id is a valid
upvoted 1 times
...
Ni33
1 year ago
Selected Answer: B
B is the answer
upvoted 1 times
...
Power123
1 year, 1 month ago
B is correct
upvoted 1 times
...
sahara99
1 year, 3 months ago
Selected Answer: B
B is correct
upvoted 2 times
...
wimarsha
1 year, 3 months ago
Someone can run an apply without plan also. So B is the correct answer.
upvoted 1 times
...
chael88
1 year, 3 months ago
Selected Answer: B
B. False Somebody else can apply the plan via Terraform Cloud. I have tested this.
upvoted 3 times
...
Ahmad_Terraform
1 year, 10 months ago
B is correct ,,
upvoted 1 times
...
Eltooth
1 year, 10 months ago
Selected Answer: B
B is correct answer.
upvoted 2 times
...
fsdgrtsdfcjmu
1 year, 11 months ago
It looks like 50% of provided answers here are wrong, should be false
upvoted 2 times
...
biscuithammer
1 year, 12 months ago
Selected Answer: B
It should be B
upvoted 4 times
...
ItaloVinodi
2 years ago
Selected Answer: B
A lot of question are wrong here, in this case is B: False
upvoted 4 times
...
Ipergorta
2 years ago
B: False
upvoted 4 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 ...