cloud-foundation-fabric/modules/apigee/outputs.tf

64 lines
1.7 KiB
Terraform
Raw Normal View History

2022-10-24 08:44:21 -07:00
/**
2023-08-24 09:15:15 -07:00
* Copyright 2023 Google LLC
2022-10-24 08:44:21 -07:00
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
output "endpoint_attachment_hosts" {
description = "Endpoint hosts."
value = { for k, v in google_apigee_endpoint_attachment.endpoint_attachments : k => v.host }
}
2022-10-24 08:44:21 -07:00
output "envgroups" {
description = "Environment groups."
2023-10-22 08:50:57 -07:00
value = google_apigee_envgroup.envgroups
2022-10-24 08:44:21 -07:00
}
output "environments" {
description = "Environment."
2023-10-22 08:50:57 -07:00
value = google_apigee_environment.environments
2022-10-24 08:44:21 -07:00
}
2023-08-24 10:38:44 -07:00
output "instances" {
description = "Instances."
2023-10-22 08:50:57 -07:00
value = google_apigee_instance.instances
2023-08-24 10:38:44 -07:00
}
2023-08-24 09:19:59 -07:00
output "nat_ips" {
2023-08-23 13:49:56 -07:00
description = "NAT IP addresses used in instances."
2023-08-24 10:32:31 -07:00
value = {
for k, v in google_apigee_nat_address.apigee_nat :
k => v.ip_address
}
2023-08-23 13:49:56 -07:00
}
2022-11-18 08:48:16 -08:00
output "org_id" {
description = "Organization ID."
value = local.org_id
}
output "org_name" {
description = "Organization name."
value = try(google_apigee_organization.organization[0].name, var.project_id)
}
output "organization" {
description = "Organization."
value = try(google_apigee_organization.organization[0], null)
}
2022-10-24 08:44:21 -07:00
output "service_attachments" {
description = "Service attachments."
value = { for k, v in google_apigee_instance.instances : k => v.service_attachment }
2023-08-24 09:15:15 -07:00
}