标签: terraform
在使用destroy之类的东西时,可以(或者应该)也可以针对模块而不是整个基础架构。
terraform destroy -target=module.<module_name>
或者更好地了解你将要破坏的内容
terraform plan -destroy -target=module.<module_name>
我同意上述评论。