-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
977a93a
commit 5fb3e5f
Showing
2 changed files
with
26 additions
and
0 deletions.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
# The following matches terraform plan changes and aims to colorize | ||
# those that show changes. | ||
# | ||
# Example: | ||
# alias.3346967081.evaluate_target_health: "" => "false" | ||
# alias.3346967081.name: "" => "somednsname.eu-west-1.elb.amazonaws.com" | ||
# alias.3346967081.zone_id: "" => "some-zone" | ||
# | ||
# Changes which stay the same are colored green, whereas those that | ||
# have changed are colored red. Changes which are due to AWS | ||
# computed values are colored blue. | ||
|
||
regexp=\s+(?:[^:])+:\s+"(.*)" => "\1" | ||
colour=green | ||
count=stop | ||
- | ||
regexp=\s+(?:[^:])+:\s+"(.*)" => <computed> | ||
colour=blue | ||
count=stop | ||
- | ||
regexp=\s+(?:[^:])+:\s+"(.*)" => "(.*)" | ||
colour=red,bold red,bold red | ||
count=stop |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
# Terraform | ||
\bterraform plan\b | ||
conf.tfplan |