Skip to content

Commit

Permalink
Update outputs.tf
Browse files Browse the repository at this point in the history
  • Loading branch information
m4xmorris committed Dec 1, 2023
1 parent 864cb49 commit 7ab76f5
Showing 1 changed file with 0 additions and 29 deletions.
29 changes: 0 additions & 29 deletions outputs.tf
Original file line number Diff line number Diff line change
Expand Up @@ -7,32 +7,3 @@ output "id" {
value = cloudflare_access_application.application.id
description = "ID of the application"
}

locals {
device_policy_rules_empty = length(flatten([var.device_policy_rules_windows, var.device_policy_rules_macos, var.device_policy_rules_ios, var.device_policy_rules_android])) == 0
}

output "github_policy_id" {
value = local.device_policy_rules_empty ? cloudflare_access_policy.github_policy[0].id : null
description = "ID of the GitHub policy, if it exists"
}

output "device_policy_windows_id" {
value = local.device_policy_rules_empty ? null : length(cloudflare_access_policy.device_policy_windows) > 0 ? cloudflare_access_policy.device_policy_windows[0].id : null
description = "ID of the Device Policy (Windows)"
}

output "device_policy_macos_id" {
value = local.device_policy_rules_empty ? null : length(cloudflare_access_policy.device_policy_macos) > 0 ? cloudflare_access_policy.device_policy_macos[0].id : null
description = "ID of the Device Policy (macOS)"
}

output "device_policy_ios_id" {
value = local.device_policy_rules_empty ? null : length(cloudflare_access_policy.device_policy_ios) > 0 ? cloudflare_access_policy.device_policy_ios[0].id : null
description = "ID of the Device Policy (iOS)"
}

output "device_policy_android_id" {
value = local.device_policy_rules_empty ? null : length(cloudflare_access_policy.device_policy_android) > 0 ? cloudflare_access_policy.device_policy_android[0].id : null
description = "ID of the Device Policy (Android)"
}

0 comments on commit 7ab76f5

Please sign in to comment.