terraformで作成したリソース一式のうち特定のリソースのみplan/apply/destroyしたいときに使えます。
terraform plan -target=リソース名
例えば、ec2-instanceモジュールで複数のEC2を作った場合、2番目のインスタンスだけplan実行は、次のようにします。
terraform plan -target=module.ec2.aws_instance.this[1]
terraformで作成したリソース一式のうち特定のリソースのみplan/apply/destroyしたいときに使えます。
terraform plan -target=リソース名
例えば、ec2-instanceモジュールで複数のEC2を作った場合、2番目のインスタンスだけplan実行は、次のようにします。
terraform plan -target=module.ec2.aws_instance.this[1]
コメント