Skip to content

Commit

Permalink
Fix outputs bug
Browse files Browse the repository at this point in the history
  • Loading branch information
m4xmorris authored Nov 29, 2023
1 parent 39171de commit c78e848
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions outputs.tf
Original file line number Diff line number Diff line change
Expand Up @@ -18,21 +18,21 @@ output "github_policy_id" {
}

output "device_policy_windows_id" {
value = local.device_policy_rules_empty ? null : cloudflare_access_policy.device_policy_windows[0].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 : cloudflare_access_policy.device_policy_macos[0].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 : cloudflare_access_policy.device_policy_ios[0].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 : cloudflare_access_policy.device_policy_android[0].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 c78e848

Please sign in to comment.