| 12345678910111213141516171819 |
- resource "cloudflare_zero_trust_access_application" "{{ resource_name }}" {
- zone_id = data.cloudflare_zone.main.zone_id
- name = "{{ app_name }}"
- domain = "{{ domain }}"
- type = "self_hosted"
- session_duration = "{{ session_duration }}"
- policies = [
- {% if service_token_enabled %}
- {
- id = cloudflare_zero_trust_access_policy.{{ resource_name }}_service_token.id
- }{{ "," if ip_policy_enabled else "" }}
- {% endif %}
- {% if ip_policy_enabled %}
- {
- id = cloudflare_zero_trust_access_policy.{{ resource_name }}_ip.id
- }
- {% endif %}
- ]
- }
|