# FAQ - Häufig gestellte Fragen

## Welche Werkzeuge sollte ich kennen und nutzen?

* [**Terragrunt**](https://terragrunt.gruntwork.io/) - Orchestrierungswerkzeug
* [**tflint**](https://github.com/terraform-linters/tflint) - Code linter
* [**tfenv**](https://github.com/tfutils/tfenv) - Terraform Versionsverwaltung
* [**Atlantis**](https://www.runatlantis.io/) - Pull Request Automatisierung
* [**pre-commit-terraform**](https://github.com/antonbabenko/pre-commit-terraform) - Sammlung von Git-Hooks für Terraform, die mit dem [Pre-Commit-Framework](https://pre-commit.com/) verwendet werden können
* [**Infracost**](https://www.infracost.io) - Cloud-Kostenschätzungen für Terraform in Pull Requests. Funktioniert auch mit Terragrunt, Atlantis und pre-commit-terraform.

## Was sind Lösungen für die [dependency hell](https://en.wikipedia.org/wiki/Dependency_hell) bei Modulen?

Die Versionen der Ressourcen- und Infrastrukturmodule sollten angegeben werden. Provider sollten außerhalb von Modulen konfiguriert werden, aber nur in der Komposition. Die Versionen von Providern und Terraform können auch fixiert werden.

Es gibt kein Master-Tool für die Verwaltung von Abhängigkeiten, aber es gibt einige Tipps, um die Abhängigkeitshölle weniger problematisch zu machen. Zum Beispiel kann [Dependabot](https://docs.github.com/en/code-security/dependabot) verwendet werden, um die Aktualisierung von Abhängigkeiten zu automatisieren. Dependabot erstellt Pull Requests, um Ihre Abhängigkeiten sicher und aktuell zu halten. Dependabot unterstützt Terraform-Konfigurationen.


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://www.terraform-best-practices.com/de/faq.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
