Some checks failed
Terraform Apply / Terraform Apply (push) Failing after 12s
20 lines
840 B
HCL
20 lines
840 B
HCL
# =============================================================================
|
|
# CLOUDFLARE : Access : Applications
|
|
# =============================================================================
|
|
|
|
#
|
|
resource "cloudflare_zero_trust_access_application" "example_zero_trust_access_application" {
|
|
account_id = local.cloudflare_account_id
|
|
type = "self_hosted"
|
|
name = "Home Network Access Application"
|
|
domain = "home.tips-of-mine.org"
|
|
session_duration = "24h"
|
|
skip_interstitial = true
|
|
tags = [cloudflare_zero_trust_access_tag.tags.name]
|
|
}
|
|
|
|
data "cloudflare_zero_trust_access_application" "example_zero_trust_access_application" {
|
|
account_id = local.cloudflare_account_id
|
|
app_id = cloudflare_zero_trust_access_application.example_zero_trust_access_application.id
|
|
}
|