From 378960cfc66b93c4b48fae0779f0b3962b5b7e95 Mon Sep 17 00:00:00 2001 From: apichick Date: Sun, 22 Oct 2023 17:50:57 +0200 Subject: [PATCH] Removed unnecessary try statements --- modules/apigee/outputs.tf | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/modules/apigee/outputs.tf b/modules/apigee/outputs.tf index eb3ab2ccd..34c58a25a 100644 --- a/modules/apigee/outputs.tf +++ b/modules/apigee/outputs.tf @@ -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" {