Skip to content

Commit

Permalink
Fix outputs order
Browse files Browse the repository at this point in the history
  • Loading branch information
Luca Prete committed Oct 21, 2023
1 parent f773f9e commit 1a34cb1
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
6 changes: 3 additions & 3 deletions modules/net-lb-ext/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -251,9 +251,9 @@ module "nlb" {
| [backend_service](outputs.tf#L17) | Backend resource. | |
| [backend_service_id](outputs.tf#L22) | Backend id. | |
| [backend_service_self_link](outputs.tf#L27) | Backend self link. | |
| [forwarding_rule_addresses](outputs.tf#L37) | Forwarding rule addresses. | |
| [forwarding_rule_self_links](outputs.tf#L45) | Forwarding rule self links. | |
| [forwarding_rules](outputs.tf#L32) | Forwarding rule resources. | |
| [forwarding_rule_addresses](outputs.tf#L32) | Forwarding rule addresses. | |
| [forwarding_rule_self_links](outputs.tf#L40) | Forwarding rule self links. | |
| [forwarding_rules](outputs.tf#L48) | Forwarding rule resources. | |
| [group_self_links](outputs.tf#L53) | Optional unmanaged instance group self links. | |
| [groups](outputs.tf#L60) | Optional unmanaged instance group resources. | |
| [health_check](outputs.tf#L65) | Auto-created health-check resource. | |
Expand Down
10 changes: 5 additions & 5 deletions modules/net-lb-ext/outputs.tf
Original file line number Diff line number Diff line change
Expand Up @@ -29,11 +29,6 @@ output "backend_service_self_link" {
value = google_compute_region_backend_service.default.self_link
}

output "forwarding_rules" {
description = "Forwarding rule resources."
value = google_compute_forwarding_rule.forwarding_rules
}

output "forwarding_rule_addresses" {
description = "Forwarding rule addresses."
value = {
Expand All @@ -50,6 +45,11 @@ output "forwarding_rule_self_links" {
}
}

output "forwarding_rules" {
description = "Forwarding rule resources."
value = google_compute_forwarding_rule.forwarding_rules
}

output "group_self_links" {
description = "Optional unmanaged instance group self links."
value = {
Expand Down

0 comments on commit 1a34cb1

Please sign in to comment.