terraform plan
0.0% Savings
0 Commands
0 Tokens saved
2 Tests
Install
Safety checks passed
Filter definition
command = "terraform plan"
strip_ansi = true
collapse_empty_lines = true
show_history_hint = true
skip = [
": Reading\\.\\.\\.$",
": Read complete",
": Refreshing state\\.\\.\\.",
": Refresh complete",
"^Refreshing Terraform state",
"^The refreshed state will be used",
"^persisted to local or remote state",
"^data\\.",
"^module\\..+: Refreshing",
"^aws_.+: Refreshing",
]
[on_failure]
tail = 40
Examples
failure shows tail of error output
~72 tokens → ~57 tokens
(21% saved)
Raw output
aws_lambda_function.api: Refreshing state... [id=gw-api] Error: Reference to undeclared resource on main.tf line 10, in resource "aws_lambda_function" "api": 10: role = aws_iam_role.missing.arn A managed resource "aws_iam_role" "missing" has not been declared in the root module.
Filtered output
Error: Reference to undeclared resource on main.tf line 10, in resource "aws_lambda_function" "api": 10: role = aws_iam_role.missing.arn A managed resource "aws_iam_role" "missing" has not been declared in the root module.
success filters refresh and reading lines
~186 tokens → ~63 tokens
(66% saved)
Raw output
aws_lambda_function.api: Refreshing state... [id=gw-api]
aws_lambda_function.api: Refresh complete [id=gw-api]
aws_iam_role.lambda: Reading...
aws_iam_role.lambda: Read complete after 1s [id=role]
Refreshing Terraform state in-memory prior to plan...
The refreshed state will be used to calculate this plan.
data.aws_region.current: Reading...
data.aws_region.current: Read complete [id=us-east-1]
module.lambda.aws_iam_role.exec: Refreshing state...
aws_s3_bucket.assets: Refreshing state...
Terraform used the selected providers to generate the following execution plan.
# aws_lambda_function.api will be updated in-place
~ resource "aws_lambda_function" "api" {
~ timeout = 30 -> 60
}
Plan: 0 to add, 1 to change, 0 to destroy. Filtered output
Terraform used the selected providers to generate the following execution plan.
# aws_lambda_function.api will be updated in-place
~ resource "aws_lambda_function" "api" {
~ timeout = 30 -> 60
}
Plan: 0 to add, 1 to change, 0 to destroy. Warning: Community filters are third-party code. Review the filter definition above before installing it in production environments.Browse all filters