Merge pull request #1792 from apichick/apigee-module-fixes

Removed unnecessary try statements
This commit is contained in:
apichick 2023-10-22 18:13:13 +02:00 committed by GitHub
commit 4b1125fc24
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 3 deletions

View File

@ -21,17 +21,17 @@ output "endpoint_attachment_hosts" {
output "envgroups" {
description = "Environment groups."
value = try(google_apigee_envgroup.envgroups, null)
value = google_apigee_envgroup.envgroups
}
output "environments" {
description = "Environment."
value = try(google_apigee_environment.environments, null)
value = google_apigee_environment.environments
}
output "instances" {
description = "Instances."
value = try(google_apigee_instance.instances, null)
value = google_apigee_instance.instances
}
output "nat_ips" {