User Tools

Site Tools


cheatsheet:terraform

This is an old revision of the document!


terraform command cheatsheet

run any terraform command with a specific .aws profile name

# in your bash profie
alias terra-prod="AWS_PROFILE=prod terraform"
alias terra-stage="AWS_PROFILE=stage terraform"
 
# in your awscli config
[prod]
aws_access_key_id = abcde1234
aws_secret_access_key = abcde1234
[stage]
aws_access_key_id = abcde1234
aws_secret_access_key = abcde1234
 
# on the cli from inside your terraform folder
$ terra-prod init
$ terra-prod plan
$ terra-prod apply
cheatsheet/terraform.1676367400.txt.gz · Last modified: 2023/02/14 09:36 by kamaradski