1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-07-01 04:35:23 +02:00

terraform: add page (#2340)

This commit is contained in:
stets 2018-09-18 13:16:08 -04:00 committed by Owen Voke
parent 3bb46fd344
commit d0ce428755

19
pages/common/terraform.md Normal file
View file

@ -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`