Terraform practices, deploy scalable Kubernetes cluster over cloud infraestructure.
terraform-infraestructura.readthedocs.io
Contains official documentation reference.
Think about costs, destroy de infraestructure if you dont need!
- Google Cloud
- Alibaba Cloud
- Cloud CLI`s cheatsheet
# alias
alias tf='terraform'
# autocomplete enabled
terraform -install-autocomplete
# reformat your configuration in the standard style
tf fmt
# check whether the configuration is valid
tf validate
# prepare your working directory for other commands
tf init
# show changes required by the current configuration
tf plan
# create or update infrastructure
tf apply
# show the current state or a saved plan
tf show
# destroy previously-created infrastructure
tf destroy
# Show output values from your root module
tf output