AlexNabokikh / tfsort

A CLI utility to sort Terraform variables and outputs
Apache License 2.0
138 stars 5 forks source link

Feature Request: Sort normal blocks based on rules #37

Open userbradley opened 1 year ago

userbradley commented 1 year ago

Hey!

I would like to see this tool expanded to also sort the lines in a block.

Sorting the vars is awesome, but I would also like to see the blocks internal line items sorted, like the below

resource "google_service_account" "example" {
  project      = var.project
  account_id   = "example"
  display_name = "example"
}

I would then like to see a config file that allows you to setup which order you want the line items to appear in.

Let me know if this makes sense?