25 lines
951 B
HCL
25 lines
951 B
HCL
# =============================================================================
|
|
# CLOUDFLARE : Access Controls : Applications
|
|
# =============================================================================
|
|
|
|
#
|
|
resource "cloudflare_zero_trust_access_application" "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 = ["engineers"]
|
|
tags = [for tag in cloudflare_zero_trust_access_tag.tags : tag.name]
|
|
|
|
depends_on = [
|
|
cloudflare_zero_trust_access_tag.tags
|
|
]
|
|
}
|
|
|
|
data "cloudflare_zero_trust_access_application" "zero_trust_access_application" {
|
|
account_id = local.cloudflare_account_id
|
|
app_id = cloudflare_zero_trust_access_application.example_zero_trust_access_application.id
|
|
}
|