From d0ce42875508bb395e4d6e3e19d93285b11c4af4 Mon Sep 17 00:00:00 2001 From: stets Date: Tue, 18 Sep 2018 13:16:08 -0400 Subject: [PATCH] terraform: add page (#2340) --- pages/common/terraform.md | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 pages/common/terraform.md diff --git a/pages/common/terraform.md b/pages/common/terraform.md new file mode 100644 index 000000000..0736cf62a --- /dev/null +++ b/pages/common/terraform.md @@ -0,0 +1,19 @@ +# terraform + +> Create and deploy infrastructure as code to cloud providers. + +- Initialize a new or existing Terraform configuration: + +`terraform init` + +- Generate and show an execution plan: + +`terraform plan` + +- Build or change infrastructure: + +`terraform apply` + +- Destroy Terraform-managed infrastructure: + +`terraform destroy`