mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-06-06 02:26:01 +02:00

* common/t*: add Korean translation * tldr: update Korean translation * Update tcc.md * Update pages.ko/common/tcc.md Co-authored-by: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com> * Update pages.ko/common/tar.md Co-authored-by: Chooooo <contact@choo.ooo> * Update pages.ko/common/tarsnap.md Co-authored-by: Chooooo <contact@choo.ooo> * Update pages.ko/common/tarsnap.md Co-authored-by: Chooooo <contact@choo.ooo> * Update pages.ko/common/transfersh.md Co-authored-by: Chooooo <contact@choo.ooo> * Update pages.ko/common/tuir.md Co-authored-by: Chooooo <contact@choo.ooo> * Update pages.ko/common/twine.md Co-authored-by: Chooooo <contact@choo.ooo> * Update pages.ko/common/twine.md Co-authored-by: Chooooo <contact@choo.ooo> --------- Co-authored-by: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com> Co-authored-by: Chooooo <contact@choo.ooo>
28 lines
496 B
Markdown
28 lines
496 B
Markdown
# terragrunt
|
|
|
|
> Terraform CLI 인수를 DRY하게 유지.
|
|
> 더 많은 정보: <https://terragrunt.gruntwork.io>.
|
|
|
|
- 실행 계획 생성 및 표시:
|
|
|
|
`terragrunt plan`
|
|
|
|
- 인프라 생성 또는 변경:
|
|
|
|
`terragrunt apply`
|
|
|
|
- 현재 배포 상태 표시:
|
|
|
|
`terragrunt show`
|
|
|
|
- 모듈 출력 값 표시:
|
|
|
|
`terragrunt output`
|
|
|
|
- Terraform이 관리하는 인프라 파괴:
|
|
|
|
`terragrunt destroy`
|
|
|
|
- Terragrunt 모듈 트리(스택)에서 인프라 생성 또는 변경:
|
|
|
|
`terragrunt run-all apply`
|