美文网首页
Terraform apply special resource

Terraform apply special resource

作者: Anoyi | 来源:发表于2022-11-29 17:11 被阅读0次

You can use Terraform's -target option to target specific resources, modules, or collections of resources. In this tutorial, you will provision an S3 bucket with some objects in it, then apply changes incrementally with -target.

For example:

terraform plan -target="random_pet.bucket_name"

terraform apply -target="random_pet.bucket_name"

terraform apply -target="aws_s3_object.objects[2]" -target="aws_s3_object.objects[3]"

相关文章

网友评论

      本文标题:Terraform apply special resource

      本文链接:https://www.haomeiwen.com/subject/ikxrfdtx.html