Some checks failed
Terraform Apply / Terraform Apply (push) Failing after 12s
19 lines
524 B
HCL
19 lines
524 B
HCL
# =============================================================================
|
|
# CLOUDFLARE : Access : Policies
|
|
# =============================================================================
|
|
|
|
#
|
|
resource "cloudflare_zero_trust_access_policy" "allow_policie" {
|
|
account_id = local.cloudflare_account_id
|
|
name = "Allow Erfi"
|
|
decision = "allow"
|
|
session_duration = "24h"
|
|
|
|
include = [
|
|
{
|
|
group = {
|
|
id = [cloudflare_zero_trust_access_group.default_groups.id]
|
|
}
|
|
}
|
|
]
|
|
} |