* Update readme. Signed-off-by: Jakub Martin <kubam@spacelift.io> * Add terms of service violation note. Signed-off-by: Jakub Martin <kubam@spacelift.io> * Fix Signed-off-by: Jakub Martin <kubam@spacelift.io> * Remove link due to `Company reserves the right to require prior written consent before linking to the Website.`. Signed-off-by: Jakub Martin <kubam@spacelift.io> * Link ToS via wayback machine. Signed-off-by: Jakub Martin <kubam@spacelift.io> * Update ToS link to "latest". Signed-off-by: Jakub Martin <kubam@spacelift.io> --------- Signed-off-by: Jakub Martin <kubam@spacelift.io> |
||
---|---|---|
.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 | ||
CONTRIBUTING.md | ||
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
- Manifesto: https://opentf.org
Important Note: This repository is currently a work in progress while we're preparing it for the first alpha release and fine-tuning the community contribution process. Please read the contributing docs before contributing. Additionally, please be mindful that building this repository in its current state and running it might put you in violation of the Terraform Registry ToS, if that's where you fetch your providers or modules from.
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 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.