fortios.webproxy.Global
Explore with Pulumi AI
Configure Web proxy global settings.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as fortios from "@pulumiverse/fortios";
const trname = new fortios.webproxy.Global("trname", {
    fastPolicyMatch: "enable",
    forwardProxyAuth: "disable",
    forwardServerAffinityTimeout: 30,
    learnClientIp: "disable",
    maxMessageLength: 32,
    maxRequestLength: 4,
    maxWafBodyCacheLength: 32,
    proxyFqdn: "default.fqdn",
    sslCaCert: "Fortinet_CA_SSL",
    sslCert: "Fortinet_Factory",
    strictWebCheck: "disable",
    tunnelNonHttp: "enable",
    unknownHttpVersion: "best-effort",
});
import pulumi
import pulumiverse_fortios as fortios
trname = fortios.webproxy.Global("trname",
    fast_policy_match="enable",
    forward_proxy_auth="disable",
    forward_server_affinity_timeout=30,
    learn_client_ip="disable",
    max_message_length=32,
    max_request_length=4,
    max_waf_body_cache_length=32,
    proxy_fqdn="default.fqdn",
    ssl_ca_cert="Fortinet_CA_SSL",
    ssl_cert="Fortinet_Factory",
    strict_web_check="disable",
    tunnel_non_http="enable",
    unknown_http_version="best-effort")
package main
import (
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
	"github.com/pulumiverse/pulumi-fortios/sdk/go/fortios/webproxy"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := webproxy.NewGlobal(ctx, "trname", &webproxy.GlobalArgs{
			FastPolicyMatch:              pulumi.String("enable"),
			ForwardProxyAuth:             pulumi.String("disable"),
			ForwardServerAffinityTimeout: pulumi.Int(30),
			LearnClientIp:                pulumi.String("disable"),
			MaxMessageLength:             pulumi.Int(32),
			MaxRequestLength:             pulumi.Int(4),
			MaxWafBodyCacheLength:        pulumi.Int(32),
			ProxyFqdn:                    pulumi.String("default.fqdn"),
			SslCaCert:                    pulumi.String("Fortinet_CA_SSL"),
			SslCert:                      pulumi.String("Fortinet_Factory"),
			StrictWebCheck:               pulumi.String("disable"),
			TunnelNonHttp:                pulumi.String("enable"),
			UnknownHttpVersion:           pulumi.String("best-effort"),
		})
		if err != nil {
			return err
		}
		return nil
	})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Fortios = Pulumiverse.Fortios;
return await Deployment.RunAsync(() => 
{
    var trname = new Fortios.Webproxy.Global("trname", new()
    {
        FastPolicyMatch = "enable",
        ForwardProxyAuth = "disable",
        ForwardServerAffinityTimeout = 30,
        LearnClientIp = "disable",
        MaxMessageLength = 32,
        MaxRequestLength = 4,
        MaxWafBodyCacheLength = 32,
        ProxyFqdn = "default.fqdn",
        SslCaCert = "Fortinet_CA_SSL",
        SslCert = "Fortinet_Factory",
        StrictWebCheck = "disable",
        TunnelNonHttp = "enable",
        UnknownHttpVersion = "best-effort",
    });
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.fortios.webproxy.Global;
import com.pulumi.fortios.webproxy.GlobalArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
    public static void main(String[] args) {
        Pulumi.run(App::stack);
    }
    public static void stack(Context ctx) {
        var trname = new Global("trname", GlobalArgs.builder()
            .fastPolicyMatch("enable")
            .forwardProxyAuth("disable")
            .forwardServerAffinityTimeout(30)
            .learnClientIp("disable")
            .maxMessageLength(32)
            .maxRequestLength(4)
            .maxWafBodyCacheLength(32)
            .proxyFqdn("default.fqdn")
            .sslCaCert("Fortinet_CA_SSL")
            .sslCert("Fortinet_Factory")
            .strictWebCheck("disable")
            .tunnelNonHttp("enable")
            .unknownHttpVersion("best-effort")
            .build());
    }
}
resources:
  trname:
    type: fortios:webproxy:Global
    properties:
      fastPolicyMatch: enable
      forwardProxyAuth: disable
      forwardServerAffinityTimeout: 30
      learnClientIp: disable
      maxMessageLength: 32
      maxRequestLength: 4
      maxWafBodyCacheLength: 32
      proxyFqdn: default.fqdn
      sslCaCert: Fortinet_CA_SSL
      sslCert: Fortinet_Factory
      strictWebCheck: disable
      tunnelNonHttp: enable
      unknownHttpVersion: best-effort
Create Global Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new Global(name: string, args: GlobalArgs, opts?: CustomResourceOptions);@overload
def Global(resource_name: str,
           args: GlobalArgs,
           opts: Optional[ResourceOptions] = None)
@overload
def Global(resource_name: str,
           opts: Optional[ResourceOptions] = None,
           proxy_fqdn: Optional[str] = None,
           max_message_length: Optional[int] = None,
           unknown_http_version: Optional[str] = None,
           forward_proxy_auth: Optional[str] = None,
           forward_server_affinity_timeout: Optional[int] = None,
           get_all_tables: Optional[str] = None,
           ldap_user_cache: Optional[str] = None,
           learn_client_ip: Optional[str] = None,
           learn_client_ip_from_header: Optional[str] = None,
           learn_client_ip_srcaddr6s: Optional[Sequence[GlobalLearnClientIpSrcaddr6Args]] = None,
           learn_client_ip_srcaddrs: Optional[Sequence[GlobalLearnClientIpSrcaddrArgs]] = None,
           log_app_id: Optional[str] = None,
           log_forward_server: Optional[str] = None,
           webproxy_profile: Optional[str] = None,
           fast_policy_match: Optional[str] = None,
           proxy_transparent_cert_inspection: Optional[str] = None,
           max_waf_body_cache_length: Optional[int] = None,
           policy_category_deep_inspect: Optional[str] = None,
           dynamic_sort_subtable: Optional[str] = None,
           max_request_length: Optional[int] = None,
           src_affinity_exempt_addr: Optional[str] = None,
           src_affinity_exempt_addr6: Optional[str] = None,
           ssl_ca_cert: Optional[str] = None,
           ssl_cert: Optional[str] = None,
           strict_web_check: Optional[str] = None,
           tunnel_non_http: Optional[str] = None,
           always_learn_client_ip: Optional[str] = None,
           vdomparam: Optional[str] = None,
           log_policy_pending: Optional[str] = None)func NewGlobal(ctx *Context, name string, args GlobalArgs, opts ...ResourceOption) (*Global, error)public Global(string name, GlobalArgs args, CustomResourceOptions? opts = null)
public Global(String name, GlobalArgs args)
public Global(String name, GlobalArgs args, CustomResourceOptions options)
type: fortios:webproxy:Global
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args GlobalArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args GlobalArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args GlobalArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args GlobalArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args GlobalArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var exampleglobalResourceResourceFromWebproxyglobal = new Fortios.Webproxy.Global("exampleglobalResourceResourceFromWebproxyglobal", new()
{
    ProxyFqdn = "string",
    MaxMessageLength = 0,
    UnknownHttpVersion = "string",
    ForwardProxyAuth = "string",
    ForwardServerAffinityTimeout = 0,
    GetAllTables = "string",
    LdapUserCache = "string",
    LearnClientIp = "string",
    LearnClientIpFromHeader = "string",
    LearnClientIpSrcaddr6s = new[]
    {
        new Fortios.Webproxy.Inputs.GlobalLearnClientIpSrcaddr6Args
        {
            Name = "string",
        },
    },
    LearnClientIpSrcaddrs = new[]
    {
        new Fortios.Webproxy.Inputs.GlobalLearnClientIpSrcaddrArgs
        {
            Name = "string",
        },
    },
    LogAppId = "string",
    LogForwardServer = "string",
    WebproxyProfile = "string",
    FastPolicyMatch = "string",
    ProxyTransparentCertInspection = "string",
    MaxWafBodyCacheLength = 0,
    PolicyCategoryDeepInspect = "string",
    DynamicSortSubtable = "string",
    MaxRequestLength = 0,
    SrcAffinityExemptAddr = "string",
    SrcAffinityExemptAddr6 = "string",
    SslCaCert = "string",
    SslCert = "string",
    StrictWebCheck = "string",
    TunnelNonHttp = "string",
    AlwaysLearnClientIp = "string",
    Vdomparam = "string",
    LogPolicyPending = "string",
});
example, err := webproxy.NewGlobal(ctx, "exampleglobalResourceResourceFromWebproxyglobal", &webproxy.GlobalArgs{
	ProxyFqdn:                    pulumi.String("string"),
	MaxMessageLength:             pulumi.Int(0),
	UnknownHttpVersion:           pulumi.String("string"),
	ForwardProxyAuth:             pulumi.String("string"),
	ForwardServerAffinityTimeout: pulumi.Int(0),
	GetAllTables:                 pulumi.String("string"),
	LdapUserCache:                pulumi.String("string"),
	LearnClientIp:                pulumi.String("string"),
	LearnClientIpFromHeader:      pulumi.String("string"),
	LearnClientIpSrcaddr6s: webproxy.GlobalLearnClientIpSrcaddr6Array{
		&webproxy.GlobalLearnClientIpSrcaddr6Args{
			Name: pulumi.String("string"),
		},
	},
	LearnClientIpSrcaddrs: webproxy.GlobalLearnClientIpSrcaddrArray{
		&webproxy.GlobalLearnClientIpSrcaddrArgs{
			Name: pulumi.String("string"),
		},
	},
	LogAppId:                       pulumi.String("string"),
	LogForwardServer:               pulumi.String("string"),
	WebproxyProfile:                pulumi.String("string"),
	FastPolicyMatch:                pulumi.String("string"),
	ProxyTransparentCertInspection: pulumi.String("string"),
	MaxWafBodyCacheLength:          pulumi.Int(0),
	PolicyCategoryDeepInspect:      pulumi.String("string"),
	DynamicSortSubtable:            pulumi.String("string"),
	MaxRequestLength:               pulumi.Int(0),
	SrcAffinityExemptAddr:          pulumi.String("string"),
	SrcAffinityExemptAddr6:         pulumi.String("string"),
	SslCaCert:                      pulumi.String("string"),
	SslCert:                        pulumi.String("string"),
	StrictWebCheck:                 pulumi.String("string"),
	TunnelNonHttp:                  pulumi.String("string"),
	AlwaysLearnClientIp:            pulumi.String("string"),
	Vdomparam:                      pulumi.String("string"),
	LogPolicyPending:               pulumi.String("string"),
})
var exampleglobalResourceResourceFromWebproxyglobal = new Global("exampleglobalResourceResourceFromWebproxyglobal", GlobalArgs.builder()
    .proxyFqdn("string")
    .maxMessageLength(0)
    .unknownHttpVersion("string")
    .forwardProxyAuth("string")
    .forwardServerAffinityTimeout(0)
    .getAllTables("string")
    .ldapUserCache("string")
    .learnClientIp("string")
    .learnClientIpFromHeader("string")
    .learnClientIpSrcaddr6s(GlobalLearnClientIpSrcaddr6Args.builder()
        .name("string")
        .build())
    .learnClientIpSrcaddrs(GlobalLearnClientIpSrcaddrArgs.builder()
        .name("string")
        .build())
    .logAppId("string")
    .logForwardServer("string")
    .webproxyProfile("string")
    .fastPolicyMatch("string")
    .proxyTransparentCertInspection("string")
    .maxWafBodyCacheLength(0)
    .policyCategoryDeepInspect("string")
    .dynamicSortSubtable("string")
    .maxRequestLength(0)
    .srcAffinityExemptAddr("string")
    .srcAffinityExemptAddr6("string")
    .sslCaCert("string")
    .sslCert("string")
    .strictWebCheck("string")
    .tunnelNonHttp("string")
    .alwaysLearnClientIp("string")
    .vdomparam("string")
    .logPolicyPending("string")
    .build());
exampleglobal_resource_resource_from_webproxyglobal = fortios.webproxy.Global("exampleglobalResourceResourceFromWebproxyglobal",
    proxy_fqdn="string",
    max_message_length=0,
    unknown_http_version="string",
    forward_proxy_auth="string",
    forward_server_affinity_timeout=0,
    get_all_tables="string",
    ldap_user_cache="string",
    learn_client_ip="string",
    learn_client_ip_from_header="string",
    learn_client_ip_srcaddr6s=[{
        "name": "string",
    }],
    learn_client_ip_srcaddrs=[{
        "name": "string",
    }],
    log_app_id="string",
    log_forward_server="string",
    webproxy_profile="string",
    fast_policy_match="string",
    proxy_transparent_cert_inspection="string",
    max_waf_body_cache_length=0,
    policy_category_deep_inspect="string",
    dynamic_sort_subtable="string",
    max_request_length=0,
    src_affinity_exempt_addr="string",
    src_affinity_exempt_addr6="string",
    ssl_ca_cert="string",
    ssl_cert="string",
    strict_web_check="string",
    tunnel_non_http="string",
    always_learn_client_ip="string",
    vdomparam="string",
    log_policy_pending="string")
const exampleglobalResourceResourceFromWebproxyglobal = new fortios.webproxy.Global("exampleglobalResourceResourceFromWebproxyglobal", {
    proxyFqdn: "string",
    maxMessageLength: 0,
    unknownHttpVersion: "string",
    forwardProxyAuth: "string",
    forwardServerAffinityTimeout: 0,
    getAllTables: "string",
    ldapUserCache: "string",
    learnClientIp: "string",
    learnClientIpFromHeader: "string",
    learnClientIpSrcaddr6s: [{
        name: "string",
    }],
    learnClientIpSrcaddrs: [{
        name: "string",
    }],
    logAppId: "string",
    logForwardServer: "string",
    webproxyProfile: "string",
    fastPolicyMatch: "string",
    proxyTransparentCertInspection: "string",
    maxWafBodyCacheLength: 0,
    policyCategoryDeepInspect: "string",
    dynamicSortSubtable: "string",
    maxRequestLength: 0,
    srcAffinityExemptAddr: "string",
    srcAffinityExemptAddr6: "string",
    sslCaCert: "string",
    sslCert: "string",
    strictWebCheck: "string",
    tunnelNonHttp: "string",
    alwaysLearnClientIp: "string",
    vdomparam: "string",
    logPolicyPending: "string",
});
type: fortios:webproxy:Global
properties:
    alwaysLearnClientIp: string
    dynamicSortSubtable: string
    fastPolicyMatch: string
    forwardProxyAuth: string
    forwardServerAffinityTimeout: 0
    getAllTables: string
    ldapUserCache: string
    learnClientIp: string
    learnClientIpFromHeader: string
    learnClientIpSrcaddr6s:
        - name: string
    learnClientIpSrcaddrs:
        - name: string
    logAppId: string
    logForwardServer: string
    logPolicyPending: string
    maxMessageLength: 0
    maxRequestLength: 0
    maxWafBodyCacheLength: 0
    policyCategoryDeepInspect: string
    proxyFqdn: string
    proxyTransparentCertInspection: string
    srcAffinityExemptAddr: string
    srcAffinityExemptAddr6: string
    sslCaCert: string
    sslCert: string
    strictWebCheck: string
    tunnelNonHttp: string
    unknownHttpVersion: string
    vdomparam: string
    webproxyProfile: string
Global Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The Global resource accepts the following input properties:
- ProxyFqdn string
- Fully Qualified Domain Name (FQDN) that clients connect to (default = default.fqdn) to connect to the explicit web proxy.
- AlwaysLearn stringClient Ip 
- Enable/disable learning the client's IP address from headers for every request. Valid values: enable,disable.
- DynamicSort stringSubtable 
- Sort sub-tables, please do not set this parameter when configuring static sub-tables. Options: [ false, true, natural, alphabetical ]. false: Default value, do not sort tables; true/natural: sort tables in natural order. For example: [ a10, a2 ] -> [ a2, a10 ]; alphabetical: sort tables in alphabetical order. For example: [ a10, a2 ] -> [ a10, a2 ].
- FastPolicy stringMatch 
- Enable/disable fast matching algorithm for explicit and transparent proxy policy. Valid values: enable,disable.
- ForwardProxy stringAuth 
- Enable/disable forwarding proxy authentication headers. Valid values: enable,disable.
- ForwardServer intAffinity Timeout 
- Period of time before the source IP's traffic is no longer assigned to the forwarding server (6 - 60 min, default = 30).
- GetAll stringTables 
- Get all sub-tables including unconfigured tables. Do not set this variable to true if you configure sub-table in another resource, otherwise, conflicts and overwrite will occur. Options: [ false, true ]. false: Default value, do not get unconfigured tables; true: get all tables including unconfigured tables.
- LdapUser stringCache 
- Enable/disable LDAP user cache for explicit and transparent proxy user. Valid values: enable,disable.
- LearnClient stringIp 
- Enable/disable learning the client's IP address from headers. Valid values: enable,disable.
- LearnClient stringIp From Header 
- Learn client IP address from the specified headers. Valid values: true-client-ip,x-real-ip,x-forwarded-for.
- LearnClient List<Pulumiverse.Ip Srcaddr6s Fortios. Webproxy. Inputs. Global Learn Client Ip Srcaddr6> 
- IPv6 Source address name (srcaddr or srcaddr6 must be set). The structure of learn_client_ip_srcaddr6block is documented below.
- LearnClient List<Pulumiverse.Ip Srcaddrs Fortios. Webproxy. Inputs. Global Learn Client Ip Srcaddr> 
- Source address name (srcaddr or srcaddr6 must be set). The structure of learn_client_ip_srcaddrblock is documented below.
- LogApp stringId 
- Enable/disable always log application type in traffic log. Valid values: enable,disable.
- LogForward stringServer 
- Enable/disable forward server name logging in forward traffic log. Valid values: enable,disable.
- LogPolicy stringPending 
- Enable/disable logging sessions that are pending on policy matching. Valid values: enable,disable.
- MaxMessage intLength 
- Maximum length of HTTP message, not including body (16 - 256 Kbytes, default = 32).
- MaxRequest intLength 
- Maximum length of HTTP request line (2 - 64 Kbytes). On FortiOS versions 6.2.0: default = 4. On FortiOS versions >= 6.2.4: default = 8.
- MaxWaf intBody Cache Length 
- Maximum length of HTTP messages processed by Web Application Firewall (WAF) (10 - 1024 Kbytes, default = 32).
- PolicyCategory stringDeep Inspect 
- Enable/disable deep inspection for application level category policy matching. Valid values: enable,disable.
- ProxyTransparent stringCert Inspection 
- Enable/disable transparent proxy certificate inspection. Valid values: enable,disable.
- SrcAffinity stringExempt Addr 
- IPv4 source addresses to exempt proxy affinity.
- SrcAffinity stringExempt Addr6 
- IPv6 source addresses to exempt proxy affinity.
- SslCa stringCert 
- SSL CA certificate for SSL interception.
- SslCert string
- SSL certificate for SSL interception.
- StrictWeb stringCheck 
- Enable/disable strict web checking to block web sites that send incorrect headers that don't conform to HTTP 1.1. Valid values: enable,disable.
- TunnelNon stringHttp 
- Enable/disable allowing non-HTTP traffic. Allowed non-HTTP traffic is tunneled. Valid values: enable,disable.
- UnknownHttp stringVersion 
- Action to take when an unknown version of HTTP is encountered: reject, allow (tunnel), or proceed with best-effort. Valid values: reject,tunnel,best-effort.
- Vdomparam string
- Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
- WebproxyProfile string
- Name of the web proxy profile to apply when explicit proxy traffic is allowed by default and traffic is accepted that does not match an explicit proxy policy.
- ProxyFqdn string
- Fully Qualified Domain Name (FQDN) that clients connect to (default = default.fqdn) to connect to the explicit web proxy.
- AlwaysLearn stringClient Ip 
- Enable/disable learning the client's IP address from headers for every request. Valid values: enable,disable.
- DynamicSort stringSubtable 
- Sort sub-tables, please do not set this parameter when configuring static sub-tables. Options: [ false, true, natural, alphabetical ]. false: Default value, do not sort tables; true/natural: sort tables in natural order. For example: [ a10, a2 ] -> [ a2, a10 ]; alphabetical: sort tables in alphabetical order. For example: [ a10, a2 ] -> [ a10, a2 ].
- FastPolicy stringMatch 
- Enable/disable fast matching algorithm for explicit and transparent proxy policy. Valid values: enable,disable.
- ForwardProxy stringAuth 
- Enable/disable forwarding proxy authentication headers. Valid values: enable,disable.
- ForwardServer intAffinity Timeout 
- Period of time before the source IP's traffic is no longer assigned to the forwarding server (6 - 60 min, default = 30).
- GetAll stringTables 
- Get all sub-tables including unconfigured tables. Do not set this variable to true if you configure sub-table in another resource, otherwise, conflicts and overwrite will occur. Options: [ false, true ]. false: Default value, do not get unconfigured tables; true: get all tables including unconfigured tables.
- LdapUser stringCache 
- Enable/disable LDAP user cache for explicit and transparent proxy user. Valid values: enable,disable.
- LearnClient stringIp 
- Enable/disable learning the client's IP address from headers. Valid values: enable,disable.
- LearnClient stringIp From Header 
- Learn client IP address from the specified headers. Valid values: true-client-ip,x-real-ip,x-forwarded-for.
- LearnClient []GlobalIp Srcaddr6s Learn Client Ip Srcaddr6Args 
- IPv6 Source address name (srcaddr or srcaddr6 must be set). The structure of learn_client_ip_srcaddr6block is documented below.
- LearnClient []GlobalIp Srcaddrs Learn Client Ip Srcaddr Args 
- Source address name (srcaddr or srcaddr6 must be set). The structure of learn_client_ip_srcaddrblock is documented below.
- LogApp stringId 
- Enable/disable always log application type in traffic log. Valid values: enable,disable.
- LogForward stringServer 
- Enable/disable forward server name logging in forward traffic log. Valid values: enable,disable.
- LogPolicy stringPending 
- Enable/disable logging sessions that are pending on policy matching. Valid values: enable,disable.
- MaxMessage intLength 
- Maximum length of HTTP message, not including body (16 - 256 Kbytes, default = 32).
- MaxRequest intLength 
- Maximum length of HTTP request line (2 - 64 Kbytes). On FortiOS versions 6.2.0: default = 4. On FortiOS versions >= 6.2.4: default = 8.
- MaxWaf intBody Cache Length 
- Maximum length of HTTP messages processed by Web Application Firewall (WAF) (10 - 1024 Kbytes, default = 32).
- PolicyCategory stringDeep Inspect 
- Enable/disable deep inspection for application level category policy matching. Valid values: enable,disable.
- ProxyTransparent stringCert Inspection 
- Enable/disable transparent proxy certificate inspection. Valid values: enable,disable.
- SrcAffinity stringExempt Addr 
- IPv4 source addresses to exempt proxy affinity.
- SrcAffinity stringExempt Addr6 
- IPv6 source addresses to exempt proxy affinity.
- SslCa stringCert 
- SSL CA certificate for SSL interception.
- SslCert string
- SSL certificate for SSL interception.
- StrictWeb stringCheck 
- Enable/disable strict web checking to block web sites that send incorrect headers that don't conform to HTTP 1.1. Valid values: enable,disable.
- TunnelNon stringHttp 
- Enable/disable allowing non-HTTP traffic. Allowed non-HTTP traffic is tunneled. Valid values: enable,disable.
- UnknownHttp stringVersion 
- Action to take when an unknown version of HTTP is encountered: reject, allow (tunnel), or proceed with best-effort. Valid values: reject,tunnel,best-effort.
- Vdomparam string
- Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
- WebproxyProfile string
- Name of the web proxy profile to apply when explicit proxy traffic is allowed by default and traffic is accepted that does not match an explicit proxy policy.
- proxyFqdn String
- Fully Qualified Domain Name (FQDN) that clients connect to (default = default.fqdn) to connect to the explicit web proxy.
- alwaysLearn StringClient Ip 
- Enable/disable learning the client's IP address from headers for every request. Valid values: enable,disable.
- dynamicSort StringSubtable 
- Sort sub-tables, please do not set this parameter when configuring static sub-tables. Options: [ false, true, natural, alphabetical ]. false: Default value, do not sort tables; true/natural: sort tables in natural order. For example: [ a10, a2 ] -> [ a2, a10 ]; alphabetical: sort tables in alphabetical order. For example: [ a10, a2 ] -> [ a10, a2 ].
- fastPolicy StringMatch 
- Enable/disable fast matching algorithm for explicit and transparent proxy policy. Valid values: enable,disable.
- forwardProxy StringAuth 
- Enable/disable forwarding proxy authentication headers. Valid values: enable,disable.
- forwardServer IntegerAffinity Timeout 
- Period of time before the source IP's traffic is no longer assigned to the forwarding server (6 - 60 min, default = 30).
- getAll StringTables 
- Get all sub-tables including unconfigured tables. Do not set this variable to true if you configure sub-table in another resource, otherwise, conflicts and overwrite will occur. Options: [ false, true ]. false: Default value, do not get unconfigured tables; true: get all tables including unconfigured tables.
- ldapUser StringCache 
- Enable/disable LDAP user cache for explicit and transparent proxy user. Valid values: enable,disable.
- learnClient StringIp 
- Enable/disable learning the client's IP address from headers. Valid values: enable,disable.
- learnClient StringIp From Header 
- Learn client IP address from the specified headers. Valid values: true-client-ip,x-real-ip,x-forwarded-for.
- learnClient List<GlobalIp Srcaddr6s Learn Client Ip Srcaddr6> 
- IPv6 Source address name (srcaddr or srcaddr6 must be set). The structure of learn_client_ip_srcaddr6block is documented below.
- learnClient List<GlobalIp Srcaddrs Learn Client Ip Srcaddr> 
- Source address name (srcaddr or srcaddr6 must be set). The structure of learn_client_ip_srcaddrblock is documented below.
- logApp StringId 
- Enable/disable always log application type in traffic log. Valid values: enable,disable.
- logForward StringServer 
- Enable/disable forward server name logging in forward traffic log. Valid values: enable,disable.
- logPolicy StringPending 
- Enable/disable logging sessions that are pending on policy matching. Valid values: enable,disable.
- maxMessage IntegerLength 
- Maximum length of HTTP message, not including body (16 - 256 Kbytes, default = 32).
- maxRequest IntegerLength 
- Maximum length of HTTP request line (2 - 64 Kbytes). On FortiOS versions 6.2.0: default = 4. On FortiOS versions >= 6.2.4: default = 8.
- maxWaf IntegerBody Cache Length 
- Maximum length of HTTP messages processed by Web Application Firewall (WAF) (10 - 1024 Kbytes, default = 32).
- policyCategory StringDeep Inspect 
- Enable/disable deep inspection for application level category policy matching. Valid values: enable,disable.
- proxyTransparent StringCert Inspection 
- Enable/disable transparent proxy certificate inspection. Valid values: enable,disable.
- srcAffinity StringExempt Addr 
- IPv4 source addresses to exempt proxy affinity.
- srcAffinity StringExempt Addr6 
- IPv6 source addresses to exempt proxy affinity.
- sslCa StringCert 
- SSL CA certificate for SSL interception.
- sslCert String
- SSL certificate for SSL interception.
- strictWeb StringCheck 
- Enable/disable strict web checking to block web sites that send incorrect headers that don't conform to HTTP 1.1. Valid values: enable,disable.
- tunnelNon StringHttp 
- Enable/disable allowing non-HTTP traffic. Allowed non-HTTP traffic is tunneled. Valid values: enable,disable.
- unknownHttp StringVersion 
- Action to take when an unknown version of HTTP is encountered: reject, allow (tunnel), or proceed with best-effort. Valid values: reject,tunnel,best-effort.
- vdomparam String
- Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
- webproxyProfile String
- Name of the web proxy profile to apply when explicit proxy traffic is allowed by default and traffic is accepted that does not match an explicit proxy policy.
- proxyFqdn string
- Fully Qualified Domain Name (FQDN) that clients connect to (default = default.fqdn) to connect to the explicit web proxy.
- alwaysLearn stringClient Ip 
- Enable/disable learning the client's IP address from headers for every request. Valid values: enable,disable.
- dynamicSort stringSubtable 
- Sort sub-tables, please do not set this parameter when configuring static sub-tables. Options: [ false, true, natural, alphabetical ]. false: Default value, do not sort tables; true/natural: sort tables in natural order. For example: [ a10, a2 ] -> [ a2, a10 ]; alphabetical: sort tables in alphabetical order. For example: [ a10, a2 ] -> [ a10, a2 ].
- fastPolicy stringMatch 
- Enable/disable fast matching algorithm for explicit and transparent proxy policy. Valid values: enable,disable.
- forwardProxy stringAuth 
- Enable/disable forwarding proxy authentication headers. Valid values: enable,disable.
- forwardServer numberAffinity Timeout 
- Period of time before the source IP's traffic is no longer assigned to the forwarding server (6 - 60 min, default = 30).
- getAll stringTables 
- Get all sub-tables including unconfigured tables. Do not set this variable to true if you configure sub-table in another resource, otherwise, conflicts and overwrite will occur. Options: [ false, true ]. false: Default value, do not get unconfigured tables; true: get all tables including unconfigured tables.
- ldapUser stringCache 
- Enable/disable LDAP user cache for explicit and transparent proxy user. Valid values: enable,disable.
- learnClient stringIp 
- Enable/disable learning the client's IP address from headers. Valid values: enable,disable.
- learnClient stringIp From Header 
- Learn client IP address from the specified headers. Valid values: true-client-ip,x-real-ip,x-forwarded-for.
- learnClient GlobalIp Srcaddr6s Learn Client Ip Srcaddr6[] 
- IPv6 Source address name (srcaddr or srcaddr6 must be set). The structure of learn_client_ip_srcaddr6block is documented below.
- learnClient GlobalIp Srcaddrs Learn Client Ip Srcaddr[] 
- Source address name (srcaddr or srcaddr6 must be set). The structure of learn_client_ip_srcaddrblock is documented below.
- logApp stringId 
- Enable/disable always log application type in traffic log. Valid values: enable,disable.
- logForward stringServer 
- Enable/disable forward server name logging in forward traffic log. Valid values: enable,disable.
- logPolicy stringPending 
- Enable/disable logging sessions that are pending on policy matching. Valid values: enable,disable.
- maxMessage numberLength 
- Maximum length of HTTP message, not including body (16 - 256 Kbytes, default = 32).
- maxRequest numberLength 
- Maximum length of HTTP request line (2 - 64 Kbytes). On FortiOS versions 6.2.0: default = 4. On FortiOS versions >= 6.2.4: default = 8.
- maxWaf numberBody Cache Length 
- Maximum length of HTTP messages processed by Web Application Firewall (WAF) (10 - 1024 Kbytes, default = 32).
- policyCategory stringDeep Inspect 
- Enable/disable deep inspection for application level category policy matching. Valid values: enable,disable.
- proxyTransparent stringCert Inspection 
- Enable/disable transparent proxy certificate inspection. Valid values: enable,disable.
- srcAffinity stringExempt Addr 
- IPv4 source addresses to exempt proxy affinity.
- srcAffinity stringExempt Addr6 
- IPv6 source addresses to exempt proxy affinity.
- sslCa stringCert 
- SSL CA certificate for SSL interception.
- sslCert string
- SSL certificate for SSL interception.
- strictWeb stringCheck 
- Enable/disable strict web checking to block web sites that send incorrect headers that don't conform to HTTP 1.1. Valid values: enable,disable.
- tunnelNon stringHttp 
- Enable/disable allowing non-HTTP traffic. Allowed non-HTTP traffic is tunneled. Valid values: enable,disable.
- unknownHttp stringVersion 
- Action to take when an unknown version of HTTP is encountered: reject, allow (tunnel), or proceed with best-effort. Valid values: reject,tunnel,best-effort.
- vdomparam string
- Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
- webproxyProfile string
- Name of the web proxy profile to apply when explicit proxy traffic is allowed by default and traffic is accepted that does not match an explicit proxy policy.
- proxy_fqdn str
- Fully Qualified Domain Name (FQDN) that clients connect to (default = default.fqdn) to connect to the explicit web proxy.
- always_learn_ strclient_ ip 
- Enable/disable learning the client's IP address from headers for every request. Valid values: enable,disable.
- dynamic_sort_ strsubtable 
- Sort sub-tables, please do not set this parameter when configuring static sub-tables. Options: [ false, true, natural, alphabetical ]. false: Default value, do not sort tables; true/natural: sort tables in natural order. For example: [ a10, a2 ] -> [ a2, a10 ]; alphabetical: sort tables in alphabetical order. For example: [ a10, a2 ] -> [ a10, a2 ].
- fast_policy_ strmatch 
- Enable/disable fast matching algorithm for explicit and transparent proxy policy. Valid values: enable,disable.
- forward_proxy_ strauth 
- Enable/disable forwarding proxy authentication headers. Valid values: enable,disable.
- forward_server_ intaffinity_ timeout 
- Period of time before the source IP's traffic is no longer assigned to the forwarding server (6 - 60 min, default = 30).
- get_all_ strtables 
- Get all sub-tables including unconfigured tables. Do not set this variable to true if you configure sub-table in another resource, otherwise, conflicts and overwrite will occur. Options: [ false, true ]. false: Default value, do not get unconfigured tables; true: get all tables including unconfigured tables.
- ldap_user_ strcache 
- Enable/disable LDAP user cache for explicit and transparent proxy user. Valid values: enable,disable.
- learn_client_ strip 
- Enable/disable learning the client's IP address from headers. Valid values: enable,disable.
- learn_client_ strip_ from_ header 
- Learn client IP address from the specified headers. Valid values: true-client-ip,x-real-ip,x-forwarded-for.
- learn_client_ Sequence[Globalip_ srcaddr6s Learn Client Ip Srcaddr6Args] 
- IPv6 Source address name (srcaddr or srcaddr6 must be set). The structure of learn_client_ip_srcaddr6block is documented below.
- learn_client_ Sequence[Globalip_ srcaddrs Learn Client Ip Srcaddr Args] 
- Source address name (srcaddr or srcaddr6 must be set). The structure of learn_client_ip_srcaddrblock is documented below.
- log_app_ strid 
- Enable/disable always log application type in traffic log. Valid values: enable,disable.
- log_forward_ strserver 
- Enable/disable forward server name logging in forward traffic log. Valid values: enable,disable.
- log_policy_ strpending 
- Enable/disable logging sessions that are pending on policy matching. Valid values: enable,disable.
- max_message_ intlength 
- Maximum length of HTTP message, not including body (16 - 256 Kbytes, default = 32).
- max_request_ intlength 
- Maximum length of HTTP request line (2 - 64 Kbytes). On FortiOS versions 6.2.0: default = 4. On FortiOS versions >= 6.2.4: default = 8.
- max_waf_ intbody_ cache_ length 
- Maximum length of HTTP messages processed by Web Application Firewall (WAF) (10 - 1024 Kbytes, default = 32).
- policy_category_ strdeep_ inspect 
- Enable/disable deep inspection for application level category policy matching. Valid values: enable,disable.
- proxy_transparent_ strcert_ inspection 
- Enable/disable transparent proxy certificate inspection. Valid values: enable,disable.
- src_affinity_ strexempt_ addr 
- IPv4 source addresses to exempt proxy affinity.
- src_affinity_ strexempt_ addr6 
- IPv6 source addresses to exempt proxy affinity.
- ssl_ca_ strcert 
- SSL CA certificate for SSL interception.
- ssl_cert str
- SSL certificate for SSL interception.
- strict_web_ strcheck 
- Enable/disable strict web checking to block web sites that send incorrect headers that don't conform to HTTP 1.1. Valid values: enable,disable.
- tunnel_non_ strhttp 
- Enable/disable allowing non-HTTP traffic. Allowed non-HTTP traffic is tunneled. Valid values: enable,disable.
- unknown_http_ strversion 
- Action to take when an unknown version of HTTP is encountered: reject, allow (tunnel), or proceed with best-effort. Valid values: reject,tunnel,best-effort.
- vdomparam str
- Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
- webproxy_profile str
- Name of the web proxy profile to apply when explicit proxy traffic is allowed by default and traffic is accepted that does not match an explicit proxy policy.
- proxyFqdn String
- Fully Qualified Domain Name (FQDN) that clients connect to (default = default.fqdn) to connect to the explicit web proxy.
- alwaysLearn StringClient Ip 
- Enable/disable learning the client's IP address from headers for every request. Valid values: enable,disable.
- dynamicSort StringSubtable 
- Sort sub-tables, please do not set this parameter when configuring static sub-tables. Options: [ false, true, natural, alphabetical ]. false: Default value, do not sort tables; true/natural: sort tables in natural order. For example: [ a10, a2 ] -> [ a2, a10 ]; alphabetical: sort tables in alphabetical order. For example: [ a10, a2 ] -> [ a10, a2 ].
- fastPolicy StringMatch 
- Enable/disable fast matching algorithm for explicit and transparent proxy policy. Valid values: enable,disable.
- forwardProxy StringAuth 
- Enable/disable forwarding proxy authentication headers. Valid values: enable,disable.
- forwardServer NumberAffinity Timeout 
- Period of time before the source IP's traffic is no longer assigned to the forwarding server (6 - 60 min, default = 30).
- getAll StringTables 
- Get all sub-tables including unconfigured tables. Do not set this variable to true if you configure sub-table in another resource, otherwise, conflicts and overwrite will occur. Options: [ false, true ]. false: Default value, do not get unconfigured tables; true: get all tables including unconfigured tables.
- ldapUser StringCache 
- Enable/disable LDAP user cache for explicit and transparent proxy user. Valid values: enable,disable.
- learnClient StringIp 
- Enable/disable learning the client's IP address from headers. Valid values: enable,disable.
- learnClient StringIp From Header 
- Learn client IP address from the specified headers. Valid values: true-client-ip,x-real-ip,x-forwarded-for.
- learnClient List<Property Map>Ip Srcaddr6s 
- IPv6 Source address name (srcaddr or srcaddr6 must be set). The structure of learn_client_ip_srcaddr6block is documented below.
- learnClient List<Property Map>Ip Srcaddrs 
- Source address name (srcaddr or srcaddr6 must be set). The structure of learn_client_ip_srcaddrblock is documented below.
- logApp StringId 
- Enable/disable always log application type in traffic log. Valid values: enable,disable.
- logForward StringServer 
- Enable/disable forward server name logging in forward traffic log. Valid values: enable,disable.
- logPolicy StringPending 
- Enable/disable logging sessions that are pending on policy matching. Valid values: enable,disable.
- maxMessage NumberLength 
- Maximum length of HTTP message, not including body (16 - 256 Kbytes, default = 32).
- maxRequest NumberLength 
- Maximum length of HTTP request line (2 - 64 Kbytes). On FortiOS versions 6.2.0: default = 4. On FortiOS versions >= 6.2.4: default = 8.
- maxWaf NumberBody Cache Length 
- Maximum length of HTTP messages processed by Web Application Firewall (WAF) (10 - 1024 Kbytes, default = 32).
- policyCategory StringDeep Inspect 
- Enable/disable deep inspection for application level category policy matching. Valid values: enable,disable.
- proxyTransparent StringCert Inspection 
- Enable/disable transparent proxy certificate inspection. Valid values: enable,disable.
- srcAffinity StringExempt Addr 
- IPv4 source addresses to exempt proxy affinity.
- srcAffinity StringExempt Addr6 
- IPv6 source addresses to exempt proxy affinity.
- sslCa StringCert 
- SSL CA certificate for SSL interception.
- sslCert String
- SSL certificate for SSL interception.
- strictWeb StringCheck 
- Enable/disable strict web checking to block web sites that send incorrect headers that don't conform to HTTP 1.1. Valid values: enable,disable.
- tunnelNon StringHttp 
- Enable/disable allowing non-HTTP traffic. Allowed non-HTTP traffic is tunneled. Valid values: enable,disable.
- unknownHttp StringVersion 
- Action to take when an unknown version of HTTP is encountered: reject, allow (tunnel), or proceed with best-effort. Valid values: reject,tunnel,best-effort.
- vdomparam String
- Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
- webproxyProfile String
- Name of the web proxy profile to apply when explicit proxy traffic is allowed by default and traffic is accepted that does not match an explicit proxy policy.
Outputs
All input properties are implicitly available as output properties. Additionally, the Global resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Id string
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
- id string
- The provider-assigned unique ID for this managed resource.
- id str
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
Look up Existing Global Resource
Get an existing Global resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.
public static get(name: string, id: Input<ID>, state?: GlobalState, opts?: CustomResourceOptions): Global@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        always_learn_client_ip: Optional[str] = None,
        dynamic_sort_subtable: Optional[str] = None,
        fast_policy_match: Optional[str] = None,
        forward_proxy_auth: Optional[str] = None,
        forward_server_affinity_timeout: Optional[int] = None,
        get_all_tables: Optional[str] = None,
        ldap_user_cache: Optional[str] = None,
        learn_client_ip: Optional[str] = None,
        learn_client_ip_from_header: Optional[str] = None,
        learn_client_ip_srcaddr6s: Optional[Sequence[GlobalLearnClientIpSrcaddr6Args]] = None,
        learn_client_ip_srcaddrs: Optional[Sequence[GlobalLearnClientIpSrcaddrArgs]] = None,
        log_app_id: Optional[str] = None,
        log_forward_server: Optional[str] = None,
        log_policy_pending: Optional[str] = None,
        max_message_length: Optional[int] = None,
        max_request_length: Optional[int] = None,
        max_waf_body_cache_length: Optional[int] = None,
        policy_category_deep_inspect: Optional[str] = None,
        proxy_fqdn: Optional[str] = None,
        proxy_transparent_cert_inspection: Optional[str] = None,
        src_affinity_exempt_addr: Optional[str] = None,
        src_affinity_exempt_addr6: Optional[str] = None,
        ssl_ca_cert: Optional[str] = None,
        ssl_cert: Optional[str] = None,
        strict_web_check: Optional[str] = None,
        tunnel_non_http: Optional[str] = None,
        unknown_http_version: Optional[str] = None,
        vdomparam: Optional[str] = None,
        webproxy_profile: Optional[str] = None) -> Globalfunc GetGlobal(ctx *Context, name string, id IDInput, state *GlobalState, opts ...ResourceOption) (*Global, error)public static Global Get(string name, Input<string> id, GlobalState? state, CustomResourceOptions? opts = null)public static Global get(String name, Output<String> id, GlobalState state, CustomResourceOptions options)resources:  _:    type: fortios:webproxy:Global    get:      id: ${id}- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- AlwaysLearn stringClient Ip 
- Enable/disable learning the client's IP address from headers for every request. Valid values: enable,disable.
- DynamicSort stringSubtable 
- Sort sub-tables, please do not set this parameter when configuring static sub-tables. Options: [ false, true, natural, alphabetical ]. false: Default value, do not sort tables; true/natural: sort tables in natural order. For example: [ a10, a2 ] -> [ a2, a10 ]; alphabetical: sort tables in alphabetical order. For example: [ a10, a2 ] -> [ a10, a2 ].
- FastPolicy stringMatch 
- Enable/disable fast matching algorithm for explicit and transparent proxy policy. Valid values: enable,disable.
- ForwardProxy stringAuth 
- Enable/disable forwarding proxy authentication headers. Valid values: enable,disable.
- ForwardServer intAffinity Timeout 
- Period of time before the source IP's traffic is no longer assigned to the forwarding server (6 - 60 min, default = 30).
- GetAll stringTables 
- Get all sub-tables including unconfigured tables. Do not set this variable to true if you configure sub-table in another resource, otherwise, conflicts and overwrite will occur. Options: [ false, true ]. false: Default value, do not get unconfigured tables; true: get all tables including unconfigured tables.
- LdapUser stringCache 
- Enable/disable LDAP user cache for explicit and transparent proxy user. Valid values: enable,disable.
- LearnClient stringIp 
- Enable/disable learning the client's IP address from headers. Valid values: enable,disable.
- LearnClient stringIp From Header 
- Learn client IP address from the specified headers. Valid values: true-client-ip,x-real-ip,x-forwarded-for.
- LearnClient List<Pulumiverse.Ip Srcaddr6s Fortios. Webproxy. Inputs. Global Learn Client Ip Srcaddr6> 
- IPv6 Source address name (srcaddr or srcaddr6 must be set). The structure of learn_client_ip_srcaddr6block is documented below.
- LearnClient List<Pulumiverse.Ip Srcaddrs Fortios. Webproxy. Inputs. Global Learn Client Ip Srcaddr> 
- Source address name (srcaddr or srcaddr6 must be set). The structure of learn_client_ip_srcaddrblock is documented below.
- LogApp stringId 
- Enable/disable always log application type in traffic log. Valid values: enable,disable.
- LogForward stringServer 
- Enable/disable forward server name logging in forward traffic log. Valid values: enable,disable.
- LogPolicy stringPending 
- Enable/disable logging sessions that are pending on policy matching. Valid values: enable,disable.
- MaxMessage intLength 
- Maximum length of HTTP message, not including body (16 - 256 Kbytes, default = 32).
- MaxRequest intLength 
- Maximum length of HTTP request line (2 - 64 Kbytes). On FortiOS versions 6.2.0: default = 4. On FortiOS versions >= 6.2.4: default = 8.
- MaxWaf intBody Cache Length 
- Maximum length of HTTP messages processed by Web Application Firewall (WAF) (10 - 1024 Kbytes, default = 32).
- PolicyCategory stringDeep Inspect 
- Enable/disable deep inspection for application level category policy matching. Valid values: enable,disable.
- ProxyFqdn string
- Fully Qualified Domain Name (FQDN) that clients connect to (default = default.fqdn) to connect to the explicit web proxy.
- ProxyTransparent stringCert Inspection 
- Enable/disable transparent proxy certificate inspection. Valid values: enable,disable.
- SrcAffinity stringExempt Addr 
- IPv4 source addresses to exempt proxy affinity.
- SrcAffinity stringExempt Addr6 
- IPv6 source addresses to exempt proxy affinity.
- SslCa stringCert 
- SSL CA certificate for SSL interception.
- SslCert string
- SSL certificate for SSL interception.
- StrictWeb stringCheck 
- Enable/disable strict web checking to block web sites that send incorrect headers that don't conform to HTTP 1.1. Valid values: enable,disable.
- TunnelNon stringHttp 
- Enable/disable allowing non-HTTP traffic. Allowed non-HTTP traffic is tunneled. Valid values: enable,disable.
- UnknownHttp stringVersion 
- Action to take when an unknown version of HTTP is encountered: reject, allow (tunnel), or proceed with best-effort. Valid values: reject,tunnel,best-effort.
- Vdomparam string
- Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
- WebproxyProfile string
- Name of the web proxy profile to apply when explicit proxy traffic is allowed by default and traffic is accepted that does not match an explicit proxy policy.
- AlwaysLearn stringClient Ip 
- Enable/disable learning the client's IP address from headers for every request. Valid values: enable,disable.
- DynamicSort stringSubtable 
- Sort sub-tables, please do not set this parameter when configuring static sub-tables. Options: [ false, true, natural, alphabetical ]. false: Default value, do not sort tables; true/natural: sort tables in natural order. For example: [ a10, a2 ] -> [ a2, a10 ]; alphabetical: sort tables in alphabetical order. For example: [ a10, a2 ] -> [ a10, a2 ].
- FastPolicy stringMatch 
- Enable/disable fast matching algorithm for explicit and transparent proxy policy. Valid values: enable,disable.
- ForwardProxy stringAuth 
- Enable/disable forwarding proxy authentication headers. Valid values: enable,disable.
- ForwardServer intAffinity Timeout 
- Period of time before the source IP's traffic is no longer assigned to the forwarding server (6 - 60 min, default = 30).
- GetAll stringTables 
- Get all sub-tables including unconfigured tables. Do not set this variable to true if you configure sub-table in another resource, otherwise, conflicts and overwrite will occur. Options: [ false, true ]. false: Default value, do not get unconfigured tables; true: get all tables including unconfigured tables.
- LdapUser stringCache 
- Enable/disable LDAP user cache for explicit and transparent proxy user. Valid values: enable,disable.
- LearnClient stringIp 
- Enable/disable learning the client's IP address from headers. Valid values: enable,disable.
- LearnClient stringIp From Header 
- Learn client IP address from the specified headers. Valid values: true-client-ip,x-real-ip,x-forwarded-for.
- LearnClient []GlobalIp Srcaddr6s Learn Client Ip Srcaddr6Args 
- IPv6 Source address name (srcaddr or srcaddr6 must be set). The structure of learn_client_ip_srcaddr6block is documented below.
- LearnClient []GlobalIp Srcaddrs Learn Client Ip Srcaddr Args 
- Source address name (srcaddr or srcaddr6 must be set). The structure of learn_client_ip_srcaddrblock is documented below.
- LogApp stringId 
- Enable/disable always log application type in traffic log. Valid values: enable,disable.
- LogForward stringServer 
- Enable/disable forward server name logging in forward traffic log. Valid values: enable,disable.
- LogPolicy stringPending 
- Enable/disable logging sessions that are pending on policy matching. Valid values: enable,disable.
- MaxMessage intLength 
- Maximum length of HTTP message, not including body (16 - 256 Kbytes, default = 32).
- MaxRequest intLength 
- Maximum length of HTTP request line (2 - 64 Kbytes). On FortiOS versions 6.2.0: default = 4. On FortiOS versions >= 6.2.4: default = 8.
- MaxWaf intBody Cache Length 
- Maximum length of HTTP messages processed by Web Application Firewall (WAF) (10 - 1024 Kbytes, default = 32).
- PolicyCategory stringDeep Inspect 
- Enable/disable deep inspection for application level category policy matching. Valid values: enable,disable.
- ProxyFqdn string
- Fully Qualified Domain Name (FQDN) that clients connect to (default = default.fqdn) to connect to the explicit web proxy.
- ProxyTransparent stringCert Inspection 
- Enable/disable transparent proxy certificate inspection. Valid values: enable,disable.
- SrcAffinity stringExempt Addr 
- IPv4 source addresses to exempt proxy affinity.
- SrcAffinity stringExempt Addr6 
- IPv6 source addresses to exempt proxy affinity.
- SslCa stringCert 
- SSL CA certificate for SSL interception.
- SslCert string
- SSL certificate for SSL interception.
- StrictWeb stringCheck 
- Enable/disable strict web checking to block web sites that send incorrect headers that don't conform to HTTP 1.1. Valid values: enable,disable.
- TunnelNon stringHttp 
- Enable/disable allowing non-HTTP traffic. Allowed non-HTTP traffic is tunneled. Valid values: enable,disable.
- UnknownHttp stringVersion 
- Action to take when an unknown version of HTTP is encountered: reject, allow (tunnel), or proceed with best-effort. Valid values: reject,tunnel,best-effort.
- Vdomparam string
- Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
- WebproxyProfile string
- Name of the web proxy profile to apply when explicit proxy traffic is allowed by default and traffic is accepted that does not match an explicit proxy policy.
- alwaysLearn StringClient Ip 
- Enable/disable learning the client's IP address from headers for every request. Valid values: enable,disable.
- dynamicSort StringSubtable 
- Sort sub-tables, please do not set this parameter when configuring static sub-tables. Options: [ false, true, natural, alphabetical ]. false: Default value, do not sort tables; true/natural: sort tables in natural order. For example: [ a10, a2 ] -> [ a2, a10 ]; alphabetical: sort tables in alphabetical order. For example: [ a10, a2 ] -> [ a10, a2 ].
- fastPolicy StringMatch 
- Enable/disable fast matching algorithm for explicit and transparent proxy policy. Valid values: enable,disable.
- forwardProxy StringAuth 
- Enable/disable forwarding proxy authentication headers. Valid values: enable,disable.
- forwardServer IntegerAffinity Timeout 
- Period of time before the source IP's traffic is no longer assigned to the forwarding server (6 - 60 min, default = 30).
- getAll StringTables 
- Get all sub-tables including unconfigured tables. Do not set this variable to true if you configure sub-table in another resource, otherwise, conflicts and overwrite will occur. Options: [ false, true ]. false: Default value, do not get unconfigured tables; true: get all tables including unconfigured tables.
- ldapUser StringCache 
- Enable/disable LDAP user cache for explicit and transparent proxy user. Valid values: enable,disable.
- learnClient StringIp 
- Enable/disable learning the client's IP address from headers. Valid values: enable,disable.
- learnClient StringIp From Header 
- Learn client IP address from the specified headers. Valid values: true-client-ip,x-real-ip,x-forwarded-for.
- learnClient List<GlobalIp Srcaddr6s Learn Client Ip Srcaddr6> 
- IPv6 Source address name (srcaddr or srcaddr6 must be set). The structure of learn_client_ip_srcaddr6block is documented below.
- learnClient List<GlobalIp Srcaddrs Learn Client Ip Srcaddr> 
- Source address name (srcaddr or srcaddr6 must be set). The structure of learn_client_ip_srcaddrblock is documented below.
- logApp StringId 
- Enable/disable always log application type in traffic log. Valid values: enable,disable.
- logForward StringServer 
- Enable/disable forward server name logging in forward traffic log. Valid values: enable,disable.
- logPolicy StringPending 
- Enable/disable logging sessions that are pending on policy matching. Valid values: enable,disable.
- maxMessage IntegerLength 
- Maximum length of HTTP message, not including body (16 - 256 Kbytes, default = 32).
- maxRequest IntegerLength 
- Maximum length of HTTP request line (2 - 64 Kbytes). On FortiOS versions 6.2.0: default = 4. On FortiOS versions >= 6.2.4: default = 8.
- maxWaf IntegerBody Cache Length 
- Maximum length of HTTP messages processed by Web Application Firewall (WAF) (10 - 1024 Kbytes, default = 32).
- policyCategory StringDeep Inspect 
- Enable/disable deep inspection for application level category policy matching. Valid values: enable,disable.
- proxyFqdn String
- Fully Qualified Domain Name (FQDN) that clients connect to (default = default.fqdn) to connect to the explicit web proxy.
- proxyTransparent StringCert Inspection 
- Enable/disable transparent proxy certificate inspection. Valid values: enable,disable.
- srcAffinity StringExempt Addr 
- IPv4 source addresses to exempt proxy affinity.
- srcAffinity StringExempt Addr6 
- IPv6 source addresses to exempt proxy affinity.
- sslCa StringCert 
- SSL CA certificate for SSL interception.
- sslCert String
- SSL certificate for SSL interception.
- strictWeb StringCheck 
- Enable/disable strict web checking to block web sites that send incorrect headers that don't conform to HTTP 1.1. Valid values: enable,disable.
- tunnelNon StringHttp 
- Enable/disable allowing non-HTTP traffic. Allowed non-HTTP traffic is tunneled. Valid values: enable,disable.
- unknownHttp StringVersion 
- Action to take when an unknown version of HTTP is encountered: reject, allow (tunnel), or proceed with best-effort. Valid values: reject,tunnel,best-effort.
- vdomparam String
- Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
- webproxyProfile String
- Name of the web proxy profile to apply when explicit proxy traffic is allowed by default and traffic is accepted that does not match an explicit proxy policy.
- alwaysLearn stringClient Ip 
- Enable/disable learning the client's IP address from headers for every request. Valid values: enable,disable.
- dynamicSort stringSubtable 
- Sort sub-tables, please do not set this parameter when configuring static sub-tables. Options: [ false, true, natural, alphabetical ]. false: Default value, do not sort tables; true/natural: sort tables in natural order. For example: [ a10, a2 ] -> [ a2, a10 ]; alphabetical: sort tables in alphabetical order. For example: [ a10, a2 ] -> [ a10, a2 ].
- fastPolicy stringMatch 
- Enable/disable fast matching algorithm for explicit and transparent proxy policy. Valid values: enable,disable.
- forwardProxy stringAuth 
- Enable/disable forwarding proxy authentication headers. Valid values: enable,disable.
- forwardServer numberAffinity Timeout 
- Period of time before the source IP's traffic is no longer assigned to the forwarding server (6 - 60 min, default = 30).
- getAll stringTables 
- Get all sub-tables including unconfigured tables. Do not set this variable to true if you configure sub-table in another resource, otherwise, conflicts and overwrite will occur. Options: [ false, true ]. false: Default value, do not get unconfigured tables; true: get all tables including unconfigured tables.
- ldapUser stringCache 
- Enable/disable LDAP user cache for explicit and transparent proxy user. Valid values: enable,disable.
- learnClient stringIp 
- Enable/disable learning the client's IP address from headers. Valid values: enable,disable.
- learnClient stringIp From Header 
- Learn client IP address from the specified headers. Valid values: true-client-ip,x-real-ip,x-forwarded-for.
- learnClient GlobalIp Srcaddr6s Learn Client Ip Srcaddr6[] 
- IPv6 Source address name (srcaddr or srcaddr6 must be set). The structure of learn_client_ip_srcaddr6block is documented below.
- learnClient GlobalIp Srcaddrs Learn Client Ip Srcaddr[] 
- Source address name (srcaddr or srcaddr6 must be set). The structure of learn_client_ip_srcaddrblock is documented below.
- logApp stringId 
- Enable/disable always log application type in traffic log. Valid values: enable,disable.
- logForward stringServer 
- Enable/disable forward server name logging in forward traffic log. Valid values: enable,disable.
- logPolicy stringPending 
- Enable/disable logging sessions that are pending on policy matching. Valid values: enable,disable.
- maxMessage numberLength 
- Maximum length of HTTP message, not including body (16 - 256 Kbytes, default = 32).
- maxRequest numberLength 
- Maximum length of HTTP request line (2 - 64 Kbytes). On FortiOS versions 6.2.0: default = 4. On FortiOS versions >= 6.2.4: default = 8.
- maxWaf numberBody Cache Length 
- Maximum length of HTTP messages processed by Web Application Firewall (WAF) (10 - 1024 Kbytes, default = 32).
- policyCategory stringDeep Inspect 
- Enable/disable deep inspection for application level category policy matching. Valid values: enable,disable.
- proxyFqdn string
- Fully Qualified Domain Name (FQDN) that clients connect to (default = default.fqdn) to connect to the explicit web proxy.
- proxyTransparent stringCert Inspection 
- Enable/disable transparent proxy certificate inspection. Valid values: enable,disable.
- srcAffinity stringExempt Addr 
- IPv4 source addresses to exempt proxy affinity.
- srcAffinity stringExempt Addr6 
- IPv6 source addresses to exempt proxy affinity.
- sslCa stringCert 
- SSL CA certificate for SSL interception.
- sslCert string
- SSL certificate for SSL interception.
- strictWeb stringCheck 
- Enable/disable strict web checking to block web sites that send incorrect headers that don't conform to HTTP 1.1. Valid values: enable,disable.
- tunnelNon stringHttp 
- Enable/disable allowing non-HTTP traffic. Allowed non-HTTP traffic is tunneled. Valid values: enable,disable.
- unknownHttp stringVersion 
- Action to take when an unknown version of HTTP is encountered: reject, allow (tunnel), or proceed with best-effort. Valid values: reject,tunnel,best-effort.
- vdomparam string
- Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
- webproxyProfile string
- Name of the web proxy profile to apply when explicit proxy traffic is allowed by default and traffic is accepted that does not match an explicit proxy policy.
- always_learn_ strclient_ ip 
- Enable/disable learning the client's IP address from headers for every request. Valid values: enable,disable.
- dynamic_sort_ strsubtable 
- Sort sub-tables, please do not set this parameter when configuring static sub-tables. Options: [ false, true, natural, alphabetical ]. false: Default value, do not sort tables; true/natural: sort tables in natural order. For example: [ a10, a2 ] -> [ a2, a10 ]; alphabetical: sort tables in alphabetical order. For example: [ a10, a2 ] -> [ a10, a2 ].
- fast_policy_ strmatch 
- Enable/disable fast matching algorithm for explicit and transparent proxy policy. Valid values: enable,disable.
- forward_proxy_ strauth 
- Enable/disable forwarding proxy authentication headers. Valid values: enable,disable.
- forward_server_ intaffinity_ timeout 
- Period of time before the source IP's traffic is no longer assigned to the forwarding server (6 - 60 min, default = 30).
- get_all_ strtables 
- Get all sub-tables including unconfigured tables. Do not set this variable to true if you configure sub-table in another resource, otherwise, conflicts and overwrite will occur. Options: [ false, true ]. false: Default value, do not get unconfigured tables; true: get all tables including unconfigured tables.
- ldap_user_ strcache 
- Enable/disable LDAP user cache for explicit and transparent proxy user. Valid values: enable,disable.
- learn_client_ strip 
- Enable/disable learning the client's IP address from headers. Valid values: enable,disable.
- learn_client_ strip_ from_ header 
- Learn client IP address from the specified headers. Valid values: true-client-ip,x-real-ip,x-forwarded-for.
- learn_client_ Sequence[Globalip_ srcaddr6s Learn Client Ip Srcaddr6Args] 
- IPv6 Source address name (srcaddr or srcaddr6 must be set). The structure of learn_client_ip_srcaddr6block is documented below.
- learn_client_ Sequence[Globalip_ srcaddrs Learn Client Ip Srcaddr Args] 
- Source address name (srcaddr or srcaddr6 must be set). The structure of learn_client_ip_srcaddrblock is documented below.
- log_app_ strid 
- Enable/disable always log application type in traffic log. Valid values: enable,disable.
- log_forward_ strserver 
- Enable/disable forward server name logging in forward traffic log. Valid values: enable,disable.
- log_policy_ strpending 
- Enable/disable logging sessions that are pending on policy matching. Valid values: enable,disable.
- max_message_ intlength 
- Maximum length of HTTP message, not including body (16 - 256 Kbytes, default = 32).
- max_request_ intlength 
- Maximum length of HTTP request line (2 - 64 Kbytes). On FortiOS versions 6.2.0: default = 4. On FortiOS versions >= 6.2.4: default = 8.
- max_waf_ intbody_ cache_ length 
- Maximum length of HTTP messages processed by Web Application Firewall (WAF) (10 - 1024 Kbytes, default = 32).
- policy_category_ strdeep_ inspect 
- Enable/disable deep inspection for application level category policy matching. Valid values: enable,disable.
- proxy_fqdn str
- Fully Qualified Domain Name (FQDN) that clients connect to (default = default.fqdn) to connect to the explicit web proxy.
- proxy_transparent_ strcert_ inspection 
- Enable/disable transparent proxy certificate inspection. Valid values: enable,disable.
- src_affinity_ strexempt_ addr 
- IPv4 source addresses to exempt proxy affinity.
- src_affinity_ strexempt_ addr6 
- IPv6 source addresses to exempt proxy affinity.
- ssl_ca_ strcert 
- SSL CA certificate for SSL interception.
- ssl_cert str
- SSL certificate for SSL interception.
- strict_web_ strcheck 
- Enable/disable strict web checking to block web sites that send incorrect headers that don't conform to HTTP 1.1. Valid values: enable,disable.
- tunnel_non_ strhttp 
- Enable/disable allowing non-HTTP traffic. Allowed non-HTTP traffic is tunneled. Valid values: enable,disable.
- unknown_http_ strversion 
- Action to take when an unknown version of HTTP is encountered: reject, allow (tunnel), or proceed with best-effort. Valid values: reject,tunnel,best-effort.
- vdomparam str
- Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
- webproxy_profile str
- Name of the web proxy profile to apply when explicit proxy traffic is allowed by default and traffic is accepted that does not match an explicit proxy policy.
- alwaysLearn StringClient Ip 
- Enable/disable learning the client's IP address from headers for every request. Valid values: enable,disable.
- dynamicSort StringSubtable 
- Sort sub-tables, please do not set this parameter when configuring static sub-tables. Options: [ false, true, natural, alphabetical ]. false: Default value, do not sort tables; true/natural: sort tables in natural order. For example: [ a10, a2 ] -> [ a2, a10 ]; alphabetical: sort tables in alphabetical order. For example: [ a10, a2 ] -> [ a10, a2 ].
- fastPolicy StringMatch 
- Enable/disable fast matching algorithm for explicit and transparent proxy policy. Valid values: enable,disable.
- forwardProxy StringAuth 
- Enable/disable forwarding proxy authentication headers. Valid values: enable,disable.
- forwardServer NumberAffinity Timeout 
- Period of time before the source IP's traffic is no longer assigned to the forwarding server (6 - 60 min, default = 30).
- getAll StringTables 
- Get all sub-tables including unconfigured tables. Do not set this variable to true if you configure sub-table in another resource, otherwise, conflicts and overwrite will occur. Options: [ false, true ]. false: Default value, do not get unconfigured tables; true: get all tables including unconfigured tables.
- ldapUser StringCache 
- Enable/disable LDAP user cache for explicit and transparent proxy user. Valid values: enable,disable.
- learnClient StringIp 
- Enable/disable learning the client's IP address from headers. Valid values: enable,disable.
- learnClient StringIp From Header 
- Learn client IP address from the specified headers. Valid values: true-client-ip,x-real-ip,x-forwarded-for.
- learnClient List<Property Map>Ip Srcaddr6s 
- IPv6 Source address name (srcaddr or srcaddr6 must be set). The structure of learn_client_ip_srcaddr6block is documented below.
- learnClient List<Property Map>Ip Srcaddrs 
- Source address name (srcaddr or srcaddr6 must be set). The structure of learn_client_ip_srcaddrblock is documented below.
- logApp StringId 
- Enable/disable always log application type in traffic log. Valid values: enable,disable.
- logForward StringServer 
- Enable/disable forward server name logging in forward traffic log. Valid values: enable,disable.
- logPolicy StringPending 
- Enable/disable logging sessions that are pending on policy matching. Valid values: enable,disable.
- maxMessage NumberLength 
- Maximum length of HTTP message, not including body (16 - 256 Kbytes, default = 32).
- maxRequest NumberLength 
- Maximum length of HTTP request line (2 - 64 Kbytes). On FortiOS versions 6.2.0: default = 4. On FortiOS versions >= 6.2.4: default = 8.
- maxWaf NumberBody Cache Length 
- Maximum length of HTTP messages processed by Web Application Firewall (WAF) (10 - 1024 Kbytes, default = 32).
- policyCategory StringDeep Inspect 
- Enable/disable deep inspection for application level category policy matching. Valid values: enable,disable.
- proxyFqdn String
- Fully Qualified Domain Name (FQDN) that clients connect to (default = default.fqdn) to connect to the explicit web proxy.
- proxyTransparent StringCert Inspection 
- Enable/disable transparent proxy certificate inspection. Valid values: enable,disable.
- srcAffinity StringExempt Addr 
- IPv4 source addresses to exempt proxy affinity.
- srcAffinity StringExempt Addr6 
- IPv6 source addresses to exempt proxy affinity.
- sslCa StringCert 
- SSL CA certificate for SSL interception.
- sslCert String
- SSL certificate for SSL interception.
- strictWeb StringCheck 
- Enable/disable strict web checking to block web sites that send incorrect headers that don't conform to HTTP 1.1. Valid values: enable,disable.
- tunnelNon StringHttp 
- Enable/disable allowing non-HTTP traffic. Allowed non-HTTP traffic is tunneled. Valid values: enable,disable.
- unknownHttp StringVersion 
- Action to take when an unknown version of HTTP is encountered: reject, allow (tunnel), or proceed with best-effort. Valid values: reject,tunnel,best-effort.
- vdomparam String
- Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
- webproxyProfile String
- Name of the web proxy profile to apply when explicit proxy traffic is allowed by default and traffic is accepted that does not match an explicit proxy policy.
Supporting Types
GlobalLearnClientIpSrcaddr, GlobalLearnClientIpSrcaddrArgs          
- Name string
- Address name.
- Name string
- Address name.
- name String
- Address name.
- name string
- Address name.
- name str
- Address name.
- name String
- Address name.
GlobalLearnClientIpSrcaddr6, GlobalLearnClientIpSrcaddr6Args          
- Name string
- Name string
- name String
- name string
- name str
- name String
Import
WebProxy Global can be imported using any of these accepted formats:
$ pulumi import fortios:webproxy/global:Global labelname WebProxyGlobal
If you do not want to import arguments of block:
$ export “FORTIOS_IMPORT_TABLE”=“false”
$ pulumi import fortios:webproxy/global:Global labelname WebProxyGlobal
$ unset “FORTIOS_IMPORT_TABLE”
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- fortios pulumiverse/pulumi-fortios
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the fortiosTerraform Provider.
