Fix output order

This commit is contained in:
Julio Castillo 2023-08-24 19:38:44 +02:00
parent add1ac2dcc
commit 67c2597bcc
2 changed files with 7 additions and 7 deletions

View File

@ -195,8 +195,8 @@ module "apigee" {
| [endpoint_attachment_hosts](outputs.tf#L17) | Endpoint hosts. | |
| [envgroups](outputs.tf#L22) | Environment groups. | |
| [environments](outputs.tf#L27) | Environment. | |
| [instances](outputs.tf#L40) | Instances. | |
| [nat_ips](outputs.tf#L32) | NAT IP addresses used in instances. | |
| [instances](outputs.tf#L32) | Instances. | |
| [nat_ips](outputs.tf#L37) | NAT IP addresses used in instances. | |
| [org_id](outputs.tf#L45) | Organization ID. | |
| [org_name](outputs.tf#L50) | Organization name. | |
| [organization](outputs.tf#L55) | Organization. | |

View File

@ -29,6 +29,11 @@ output "environments" {
value = try(google_apigee_environment.environments, null)
}
output "instances" {
description = "Instances."
value = try(google_apigee_instance.instances, null)
}
output "nat_ips" {
description = "NAT IP addresses used in instances."
value = {
@ -37,11 +42,6 @@ output "nat_ips" {
}
}
output "instances" {
description = "Instances."
value = try(google_apigee_instance.instances, null)
}
output "org_id" {
description = "Organization ID."
value = local.org_id