You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Once terraform plans get bigger a plan output will be mostly filled with "Refreshing state..." lines. Even small projects that use a few modules quickly have hundreds of those lines, which means that atlantis comments in Github/Bitbucket/Gitlab will be very long and eventually split for potentially very little real information on what is being changed.
It would be nice to have an option that hides those "Refreshing state..." lines easily. Using wrappers and grep of course is an option but not a very nice one in my opinion.
So a comment like this:
aws_route.acme_inc_production_tgw_public_vpc_routes[3]: Refreshing state... [id=r-rtb-aaaaaaaaaaaaaaaaaaaaaaaaaaa]
aws_route.acme_inc_production_tgw_public_vpc_routes[0]: Refreshing state... [id=r-rtb-aaaaaaaaaaaaaaaaaaaaaaaaaaa]
aws_route.acme_inc_production_tgw_public_vpc_routes[1]: Refreshing state... [id=r-rtb-aaaaaaaaaaaaaaaaaaaaaaaaaaa]
aws_route.acme_inc_production_tgw_public_vpc_routes[2]: Refreshing state... [id=r-rtb-aaaaaaaaaaaaaaaaaaaaaaaaaaa]
... <possibly hundreds more here>...
module.acme_inc_sandbox.aws_iam_role_policy_attachment.sso_billing_attachment: Refreshing state... [id=BillingAccess-20210129144109122700000003]
module.acme_inc_sandbox.aws_iam_role_policy_attachment.sso_viewonly_attachment: Refreshing state... [id=ViewOnlyAccess-20210129144109155900000005]
module.acme_inc_sandbox.aws_iam_role_policy_attachment.sso_administrator_attachment: Refreshing state... [id=AdministratorAccess-20210129144109115100000002]
An execution plan has been generated and is shown below.
Resource actions are indicated with the following symbols:
- destroy
Terraform will perform the following actions:
# null_resource.dummy will be destroyed
- resource "null_resource" "dummy" {
- id = "1056314616063222887" -> null
}
Plan: 0 to add, 0 to change, 1 to destroy.
should become this:
An execution plan has been generated and is shown below.
Resource actions are indicated with the following symbols:
- destroy
Terraform will perform the following actions:
# null_resource.dummy will be destroyed
- resource "null_resource" "dummy" {
- id = "1056314616063222887" -> null
}
Plan: 0 to add, 0 to change, 1 to destroy.
The text was updated successfully, but these errors were encountered:
Once terraform plans get bigger a plan output will be mostly filled with "Refreshing state..." lines. Even small projects that use a few modules quickly have hundreds of those lines, which means that atlantis comments in Github/Bitbucket/Gitlab will be very long and eventually split for potentially very little real information on what is being changed.
It would be nice to have an option that hides those "Refreshing state..." lines easily. Using wrappers and grep of course is an option but not a very nice one in my opinion.
So a comment like this:
should become this:
The text was updated successfully, but these errors were encountered: