51 lines
1.7 KiB
Bash
51 lines
1.7 KiB
Bash
|
#!/usr/bin/env bash
|
||
|
# Copyright 2017 Google Inc.
|
||
|
#
|
||
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
||
|
# you may not use this file except in compliance with the License.
|
||
|
# You may obtain a copy of the License at
|
||
|
#
|
||
|
# https://www.apache.org/licenses/LICENSE-2.0
|
||
|
#
|
||
|
# Unless required by applicable law or agreed to in writing, software
|
||
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
||
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||
|
# See the License for the specific language governing permissions and
|
||
|
# limitations under the License.
|
||
|
|
||
|
alias terraform_landscape='landscape'
|
||
|
alias tf='terraform'
|
||
|
alias tfa='terraform apply'
|
||
|
alias tfc='terraform console'
|
||
|
alias tfd='terraform destroy'
|
||
|
alias tff='terraform fmt'
|
||
|
alias tfg='terraform graph'
|
||
|
alias tfim='terraform import'
|
||
|
alias tfin='terraform init'
|
||
|
alias tfo='terraform output'
|
||
|
alias tfp='terraform plan'
|
||
|
alias tfpr='terraform providers'
|
||
|
alias tfr='terraform refresh'
|
||
|
alias tfsh='terraform show'
|
||
|
alias tft='terraform taint'
|
||
|
alias tfut='terraform untaint'
|
||
|
alias tfv='terraform validate'
|
||
|
alias tfw='terraform workspace'
|
||
|
alias tfs='terraform state'
|
||
|
alias tffu='terraform force-unlock'
|
||
|
alias tfwst='terraform workspace select'
|
||
|
alias tfwsw='terraform workspace show'
|
||
|
alias tfssw='terraform state show'
|
||
|
alias tfwde='terraform workspace delete'
|
||
|
alias tfwls='terraform workspace list'
|
||
|
alias tfsls='terraform state list'
|
||
|
alias tfwnw='terraform workspace new'
|
||
|
alias tfsmv='terraform state mv'
|
||
|
alias tfspl='terraform state pull'
|
||
|
alias tfsph='terraform state push'
|
||
|
alias tfsrm='terraform state rm'
|
||
|
alias tfay='terraform apply -auto-approve'
|
||
|
alias tfdy='terraform destroy -auto-approve'
|
||
|
alias tfinu='terraform init -upgrade'
|
||
|
alias tfpde='terraform plan --destroy'
|