Skip to content

Commit

Permalink
terraform fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
m4xmorris committed Nov 30, 2023
1 parent 97ca3b2 commit 38e582a
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions policies.tf
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ resource "cloudflare_access_policy" "device_policy_windows" {
zone_id = var.cloudflare_zone_id
name = "${var.name} Device Policy (Windows)"
precedence = "1"
decision = "non_identity"
decision = "non_identity"
purpose_justification_required = var.purpose_justification_required
purpose_justification_prompt = var.purpose_justification_required ? var.purpose_justification_prompt : null
include {
Expand All @@ -38,7 +38,7 @@ resource "cloudflare_access_policy" "device_policy_macos" {
zone_id = var.cloudflare_zone_id
name = "${var.name} Device Policy (macOS)"
precedence = "2"
decision = "non_identity"
decision = "non_identity"
purpose_justification_required = var.purpose_justification_required
purpose_justification_prompt = var.purpose_justification_required ? var.purpose_justification_prompt : null
include {
Expand All @@ -55,7 +55,7 @@ resource "cloudflare_access_policy" "device_policy_ios" {
zone_id = var.cloudflare_zone_id
name = "${var.name} Device Policy (iOS)"
precedence = "3"
decision = "non_identity"
decision = "non_identity"
purpose_justification_required = var.purpose_justification_required
purpose_justification_prompt = var.purpose_justification_required ? var.purpose_justification_prompt : null
include {
Expand All @@ -72,7 +72,7 @@ resource "cloudflare_access_policy" "device_policy_android" {
zone_id = var.cloudflare_zone_id
name = "${var.name} Device Policy (Android)"
precedence = "4"
decision = "non_identity"
decision = "non_identity"
purpose_justification_required = var.purpose_justification_required
purpose_justification_prompt = var.purpose_justification_required ? var.purpose_justification_prompt : null
include {
Expand Down

0 comments on commit 38e582a

Please sign in to comment.