All checks were successful
Terraform Apply / Terraform Apply (push) Successful in 22s
17 lines
503 B
HCL
17 lines
503 B
HCL
# =============================================================================
|
|
# CLOUDFLARE : Access : Policies
|
|
# =============================================================================
|
|
|
|
#
|
|
resource "cloudflare_zero_trust_access_policy" "allow_policie" {
|
|
account_id = local.cloudflare_account_id
|
|
name = "Allow"
|
|
decision = "allow"
|
|
session_duration = "24h"
|
|
|
|
include = [{
|
|
group = {
|
|
id = cloudflare_zero_trust_access_group.default_groups.id
|
|
}
|
|
}]
|
|
} |