Removed unnecessary try statements

This commit is contained in:
apichick 2023-10-22 17:50:57 +02:00
parent 4690bf206a
commit 378960cfc6
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" {