Feature
#146 Use HCL syntax highlight. Thanks to @dtaniwaki
e.g.
AS IS
kubernetes_service.example: Refreshing state... [id=default/terraform-example]
Terraform used the selected providers to generate the following execution
plan. Resource actions are indicated with the following symbols:
~ update in-place
Terraform will perform the following actions:
# kubernetes_service.example will be updated in-place
~ resource "kubernetes_service" "example" {
id = "default/terraform-example"
# (2 unchanged attributes hidden)
~ spec {
# (8 unchanged attributes hidden)
~ port {
~ port = 8080 -> 8000
# (3 unchanged attributes hidden)
}
}
# (1 unchanged block hidden)
}
Plan: 0 to add, 1 to change, 0 to destroy.
─────────────────────────────────────────────────────────────────────────────
Note: You didn't use the -out option to save this plan, so Terraform can't
guarantee to take exactly these actions if you run "terraform apply" now.
TO BE
kubernetes_service.example: Refreshing state... [id=default/terraform-example]
Terraform used the selected providers to generate the following execution
plan. Resource actions are indicated with the following symbols:
~ update in-place
Terraform will perform the following actions:
# kubernetes_service.example will be updated in-place
~ resource "kubernetes_service" "example" {
id = "default/terraform-example"
# (2 unchanged attributes hidden)
~ spec {
# (8 unchanged attributes hidden)
~ port {
~ port = 8080 -> 8000
# (3 unchanged attributes hidden)
}
}
# (1 unchanged block hidden)
}
Plan: 0 to add, 1 to change, 0 to destroy.
─────────────────────────────────────────────────────────────────────────────
Note: You didn't use the -out option to save this plan, so Terraform can't
guarantee to take exactly these actions if you run "terraform apply" now.