Terraform: Difference between revisions

From wikinotes
No edit summary
Line 14: Line 14:
* infrastructure is described/managed from a directory with a <code>*.tf</code> file
* infrastructure is described/managed from a directory with a <code>*.tf</code> file
* '''resources''' are composable building-blocks. They may describe network-configurations, VPS servers, DNS records, etc.
* '''resources''' are composable building-blocks. They may describe network-configurations, VPS servers, DNS records, etc.
* '''providers''' expose resource-types and data-sources that you can use
</blockquote><!-- Overview -->
</blockquote><!-- Overview -->



Revision as of 17:22, 25 September 2022

A configuration orchestration tool by hashicorp.

Documentation

home https://www.terraform.io/

Overview

  • infrastructure is described/managed from a directory with a *.tf file
  • resources are composable building-blocks. They may describe network-configurations, VPS servers, DNS records, etc.
  • providers expose resource-types and data-sources that you can use

Notes

terraform syntax
terraform usage