forked from hashicorp/terraform
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Closes hashicorp#1768 - Implements taint with wildcard
This implementation of wildcard functionality enables the following: Given resources: - test_instance.foo.a - test_instance.foo.b - test_instance.bar.a Matches: `test_instance.*` - test_instance.foo.a - test_instance.foo.b - test_instance.bar.a `test_instance.*.a` - test_instance.foo.a - test_instance.bar.a `test_instance.foo.*` - test_instance.foo.a - test_instance.foo.b `test_instance.foo*` - Doesn't match anything
- Loading branch information
Arthur Burkart
committed
Nov 20, 2016
1 parent
3920460
commit 8d85a09
Showing
3 changed files
with
291 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters