$ cat /tmp/tfhelp | awk '{$1=$1;print}' | awk -F ' ' '{$1=""; print $0}' | sort -u
cat terraform
cat /usr/local/bin/terraform
cd .terraform/modules/cell_shared.databricks_email_notification/
cd .terraform/modules/cell_shared.databricks_email_notification/modules
history | grep terraform > /tmp/tfhelp
rm -rf .terraform && terraform init
rm -rf .terraform && terraform init && terraform plan -out tf.plan
rm -rf .terraform && terraform init && terraform plan -out tf.plan | tee -a out.plan
rm -rf .terraform && terraform init && terraform plan -out tf.plan | tee /tmp/wfplan
rm -rf .terraform && terraform init && terraform plan -out tf.plan | tee /tmp/wfplan2
terraform apply
terraform apply "tf.plan"
terraform apply tf.plan
terraform apply "tf.plan" terraform apply "tf.plan" terraform apply "tf.plan"terraform apply "tf.plan"
terraform destroy
terraform destroy --target=module.nomad.module.nomad_cluster.aws_autoscaling_group.nomad[0]
terraform destroy --target=module.ops_tgw.aws_ram_resource_share.ops_tgw
terraform init
terraform init && terraform plan -out tf.plan
terraform output
terraform outputs
terraform plan
terraform plan -out tf.plan
terraform plan -out tf.plan && terraform apply tf.plan
terraform resources
terraform state list
terraform state list |grep boot
terraform state list |grep vault
terraform state list |grep vault |grep boot
terraform state outputs
terraform taint module.vault_bootstrap.null_resource.vault_bootstrap
TF_DEBUG=true && terraform plan -out tf.plan
TF_LOG=DEBUG && terraform apply tf.plan
TF_LOG=DEBUG && terraform plan -out tf.plan
vim terraform
vim .terraform/modules/cell_shared.databricks_email_notification/main.tf
vim .terraform/modules/cell_shared.databricks_email_notification/modules/
vim .terraform/modules/cell_shared.databricks_email_notification/modules/api_gateway/main.tf
vim .terraform/modules/cell_shared.databricks_email_notification/modules/lambda_function/main.tf
vim .terraform/modules/cell_shared.zookeeper/modules/zookeeper_nomad_job/main.tf
vim .terraform/modules/cell_shared.zookeeper/modules/zookeeper_nomad_job/zookeeper_server_nomad.tpl
vim /usr/local/bin/terraform
vi .terraform/modules/cell_eap/kube_application_roles.tf
vi .terraform/modules/cross_connectivity_for_crypter_usw2_vpc/modules/cross_connectivity/main.tf
vi .terraform/modules/vault_config/auth/aws/main.tf
vi .terraform/modules/vault_config/auth/aws/variables.tf
which terraform
Sunday, January 26, 2020
Terraform frequent commands
Subscribe to:
Posts (Atom)
-
$ cat /tmp/tfhelp | awk '{$1=$1;print}' | awk -F ' ' '{$1=""; print $0}' | sort -u cat terraform cat /us...
-
Terraform is configured using a high-level, expressive configuration syntax to describe the resources that make up your infrastructure. Firs...
-
The workflow A) DEVELOPMENT: First the developer develops the App B) TESTING: Once the app is developed, we then move to the next s...