Terraform

From wiki.vacula.xyz
Revision as of 16:05, 13 August 2024 by Dracula (talk | contribs) (Created page with "'''Terraform''' serves as an infrastructure-as-code deployment tool. == Quick Usage == <nowiki> # Prepare terraform in the current directory terraform init # Format the .tf file terraform fmt # Verify .tf file syntax terraform validate # Show changes terraform plan # Apply changes terraform apply # Remove everything terraform destroy</nowiki> <nowiki>")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Terraform serves as an infrastructure-as-code deployment tool.

Quick Usage

# Prepare terraform in the current directory
terraform init
# Format the .tf file
terraform fmt 
# Verify .tf file syntax
terraform validate
# Show changes 
terraform plan
# Apply changes
terraform apply
# Remove everything 
terraform destroy


<nowiki>