Guest User

Untitled

a guest
Mar 23rd, 2018
115
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.82 KB | None | 0 0
  1. gpg-open:
  2. Makefile-scripts/gpg-open.sh
  3. .PHONY: gpg-open
  4.  
  5. gpg-close:
  6. Makefile-scripts/gpg-close.sh
  7. .PHONY: gpg-close
  8.  
  9. gpg-reencrypt:
  10. Makefile-scripts/gpg-open.sh
  11. Makefile-scripts/gpg-close.sh -f
  12. .PHONY: gpg-reencrypt
  13.  
  14. all: plan
  15. .PHONY: all
  16.  
  17. both: plan apply
  18. .PHONY: both
  19.  
  20. refresh:
  21. terraform refresh
  22. .PHONY: refresh
  23.  
  24. quick:
  25. rm -f terraform.plan ; terraform plan -refresh=false
  26. .PHONY: quick
  27.  
  28. plan:
  29. terraform plan -out=terraform.plan ${ARGS}
  30. .PHONY: plan
  31.  
  32. apply:
  33. terraform apply terraform.plan ${ARGS} ; rm -f terraform.plan
  34. .PHONY: apply
  35.  
  36. do: apply
  37. .PHONY: do
  38.  
  39. destroy:
  40. terraform destroy
  41. .PHONY: destroy
  42.  
  43. ashes: destroy
  44. .PHONY: ashes
  45.  
  46. push:
  47. git push
  48. .PHONY: push
  49.  
  50. clean-whitespace:
  51. Makefile-scripts/whitespace-clean.sh
  52. .PHONY: clean-whitespace
  53.  
  54. update:
  55. terraform get -update
  56. .PHONY: update
  57.  
  58. init:
  59. terraform init
  60. .PHONY: init
Add Comment
Please, Sign In to add comment