Update access_applications.tf
Some checks failed
Terraform Apply / Terraform Apply (push) Failing after 6s

This commit is contained in:
2025-11-14 21:37:33 +01:00
parent 1e63b10f85
commit 29a3e974a6

View File

@@ -5,12 +5,13 @@
# #
resource "cloudflare_zero_trust_access_application" "example_zero_trust_access_application" { resource "cloudflare_zero_trust_access_application" "example_zero_trust_access_application" {
account_id = local.cloudflare_account_id account_id = local.cloudflare_account_id
type = "infrastructure"
name = "Home Network Access Application" name = "Home Network Access Application"
domain = "home.tips-of-mine.org" domain = "home.tips-of-mine.org"
type = "self_hosted" type = "self_hosted"
session_duration = "24h" session_duration = "24h"
skip_interstitial = true skip_interstitial = true
tags = ["engineers"] tags = [cloudflare_zero_trust_access_tag.tags.name]
} }
data "cloudflare_zero_trust_access_application" "example_zero_trust_access_application" { data "cloudflare_zero_trust_access_application" "example_zero_trust_access_application" {