Skip to content

Commit

Permalink
Merge pull request #1792 from apichick/apigee-module-fixes
Browse files Browse the repository at this point in the history
Removed unnecessary try statements
  • Loading branch information
apichick committed Oct 22, 2023
2 parents 4690bf2 + 378960c commit 4b1125f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions modules/apigee/outputs.tf
Original file line number Diff line number Diff line change
Expand Up @@ -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" {
Expand Down

0 comments on commit 4b1125f

Please sign in to comment.