mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-29 23:24:55 +02:00
29 lines
694 B
Markdown
29 lines
694 B
Markdown
![]() |
# pulumi destroy
|
||
|
|
||
|
> 스택 내의 모든 기존 리소스를 제거합니다.
|
||
|
> 더 많은 정보: <https://www.pulumi.com/docs/cli/commands/pulumi_destroy/>.
|
||
|
|
||
|
- 현재 스택의 모든 리소스를 제거:
|
||
|
|
||
|
`pulumi destroy`
|
||
|
|
||
|
- 특정 스택의 모든 리소스를 제거:
|
||
|
|
||
|
`pulumi destroy --stack {{스택}}`
|
||
|
|
||
|
- 미리 보기 후 자동 승인하고 리소스를 제거:
|
||
|
|
||
|
`pulumi destroy --yes`
|
||
|
|
||
|
- 보호된 리소스를 제거 대상에서 제외:
|
||
|
|
||
|
`pulumi destroy --exclude-protected`
|
||
|
|
||
|
- 스택의 모든 리소스가 삭제된 후 스택 및 구성 파일 제거:
|
||
|
|
||
|
`pulumi destroy --remove`
|
||
|
|
||
|
- 오류가 발생해도 리소스 삭제를 계속 진행:
|
||
|
|
||
|
`pulumi destroy --continue-on-error`
|