c3ec988d94
Signed-off-by: RLRabinowitz <rlrabinowitz2@gmail.com> |
||
---|---|---|
.github | ||
docs | ||
internal | ||
scripts | ||
testing/equivalence-tests | ||
tools | ||
version | ||
website | ||
.copywrite.hcl | ||
.gitignore | ||
.go-version | ||
.goreleaser.yaml | ||
.tfdev | ||
BUILDING.md | ||
CHANGELOG.md | ||
CODE_OF_CONDUCT.md | ||
codecov.yml | ||
CODEOWNERS | ||
commands.go | ||
copyright_headers.go | ||
Dockerfile | ||
experiments.go | ||
go.mod | ||
go.sum | ||
help.go | ||
LICENSE | ||
main_test.go | ||
main.go | ||
Makefile | ||
MIGRATION_GUIDE.md | ||
plugins.go | ||
provider_source.go | ||
README.md | ||
signal_unix.go | ||
signal_windows.go | ||
telemetry.go | ||
tools.go | ||
version.go | ||
working_dir.go |
OpenTF
- Website: https://www.opentf.org
- Documentation: https://www.opentf.org/docs/
OpenTF is an OSS tool for building, changing, and versioning infrastructure safely and efficiently. OpenTF can manage existing and popular service providers as well as custom in-house solutions.
The key features of OpenTF are:
-
Infrastructure as Code: Infrastructure is described using a high-level configuration syntax. This allows a blueprint of your datacenter to be versioned and treated as you would any other code. Additionally, infrastructure can be shared and re-used.
-
Execution Plans: OpenTF has a "planning" step where it generates an execution plan. The execution plan shows what OpenTF will do when you call apply. This lets you avoid any surprises when OpenTF manipulates infrastructure.
-
Resource Graph: OpenTF builds a graph of all your resources, and parallelizes the creation and modification of any non-dependent resources. Because of this, OpenTF builds infrastructure as efficiently as possible, and operators get insight into dependencies in their infrastructure.
-
Change Automation: Complex changesets can be applied to your infrastructure with minimal human interaction. With the previously mentioned execution plan and resource graph, you know exactly what OpenTF will change and in what order, avoiding many possible human errors.
Developing OpenTF
This repository contains only OpenTF core, which includes the command line interface and the main graph engine.
-
To learn more about compiling OpenTF and contributing suggested changes, refer to the contributing guide.
-
To submit bug reports or enhancement requests, refer to the the contributing guide as well.