Open jfairchild opened 3 years ago
The targets yaml list was being processed as: terraform plan --target aws_s3_bucket.test --target module.foo.bar
terraform plan --target aws_s3_bucket.test --target module.foo.bar
The correct usage is: terraform plan -target=aws_s3_bucket.test -target=module.foo.bar
terraform plan -target=aws_s3_bucket.test -target=module.foo.bar
https://www.terraform.io/docs/cli/commands/plan.html#resource-targeting
The targets yaml list was being processed as:
terraform plan --target aws_s3_bucket.test --target module.foo.bar
The correct usage is:
terraform plan -target=aws_s3_bucket.test -target=module.foo.bar
https://www.terraform.io/docs/cli/commands/plan.html#resource-targeting