1. Packages
  2. Fortimanager Provider
  3. API Docs
  4. ObjectFirewallAccessproxyApigatewayRealservers
fortimanager 1.13.0 published on Thursday, Mar 13, 2025 by fortinetdev

fortimanager.ObjectFirewallAccessproxyApigatewayRealservers

Explore with Pulumi AI

fortimanager logo
fortimanager 1.13.0 published on Thursday, Mar 13, 2025 by fortinetdev

    Select the real servers that this Access Proxy will distribute traffic to.

    This resource is a sub resource for variable realservers of resource fortimanager.ObjectFirewallAccessproxyApigateway. Conflict and overwrite may occur if use both of them.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as fortimanager from "@pulumi/fortimanager";
    
    const trnameObjectFirewallAccessproxy = new fortimanager.ObjectFirewallAccessproxy("trnameObjectFirewallAccessproxy", {});
    const trnameObjectFirewallAccessproxyApigateway = new fortimanager.ObjectFirewallAccessproxyApigateway("trnameObjectFirewallAccessproxyApigateway", {
        fosid: 1,
        accessProxy: trnameObjectFirewallAccessproxy.name,
    }, {
        dependsOn: [trnameObjectFirewallAccessproxy],
    });
    const trnameObjectFirewallAccessproxyApigatewayRealservers = new fortimanager.ObjectFirewallAccessproxyApigatewayRealservers("trnameObjectFirewallAccessproxyApigatewayRealservers", {
        accessProxy: trnameObjectFirewallAccessproxy.name,
        apiGateway: trnameObjectFirewallAccessproxyApigateway.fosid,
        healthCheck: "enable",
        healthCheckProto: "ping",
        fosid: 2,
        ip: "2.3.4.5",
    }, {
        dependsOn: [trnameObjectFirewallAccessproxyApigateway],
    });
    
    import pulumi
    import pulumi_fortimanager as fortimanager
    
    trname_object_firewall_accessproxy = fortimanager.ObjectFirewallAccessproxy("trnameObjectFirewallAccessproxy")
    trname_object_firewall_accessproxy_apigateway = fortimanager.ObjectFirewallAccessproxyApigateway("trnameObjectFirewallAccessproxyApigateway",
        fosid=1,
        access_proxy=trname_object_firewall_accessproxy.name,
        opts = pulumi.ResourceOptions(depends_on=[trname_object_firewall_accessproxy]))
    trname_object_firewall_accessproxy_apigateway_realservers = fortimanager.ObjectFirewallAccessproxyApigatewayRealservers("trnameObjectFirewallAccessproxyApigatewayRealservers",
        access_proxy=trname_object_firewall_accessproxy.name,
        api_gateway=trname_object_firewall_accessproxy_apigateway.fosid,
        health_check="enable",
        health_check_proto="ping",
        fosid=2,
        ip="2.3.4.5",
        opts = pulumi.ResourceOptions(depends_on=[trname_object_firewall_accessproxy_apigateway]))
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-terraform-provider/sdks/go/fortimanager/fortimanager"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		trnameObjectFirewallAccessproxy, err := fortimanager.NewObjectFirewallAccessproxy(ctx, "trnameObjectFirewallAccessproxy", nil)
    		if err != nil {
    			return err
    		}
    		trnameObjectFirewallAccessproxyApigateway, err := fortimanager.NewObjectFirewallAccessproxyApigateway(ctx, "trnameObjectFirewallAccessproxyApigateway", &fortimanager.ObjectFirewallAccessproxyApigatewayArgs{
    			Fosid:       pulumi.Float64(1),
    			AccessProxy: trnameObjectFirewallAccessproxy.Name,
    		}, pulumi.DependsOn([]pulumi.Resource{
    			trnameObjectFirewallAccessproxy,
    		}))
    		if err != nil {
    			return err
    		}
    		_, err = fortimanager.NewObjectFirewallAccessproxyApigatewayRealservers(ctx, "trnameObjectFirewallAccessproxyApigatewayRealservers", &fortimanager.ObjectFirewallAccessproxyApigatewayRealserversArgs{
    			AccessProxy:      trnameObjectFirewallAccessproxy.Name,
    			ApiGateway:       trnameObjectFirewallAccessproxyApigateway.Fosid,
    			HealthCheck:      pulumi.String("enable"),
    			HealthCheckProto: pulumi.String("ping"),
    			Fosid:            pulumi.Float64(2),
    			Ip:               pulumi.String("2.3.4.5"),
    		}, pulumi.DependsOn([]pulumi.Resource{
    			trnameObjectFirewallAccessproxyApigateway,
    		}))
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Fortimanager = Pulumi.Fortimanager;
    
    return await Deployment.RunAsync(() => 
    {
        var trnameObjectFirewallAccessproxy = new Fortimanager.ObjectFirewallAccessproxy("trnameObjectFirewallAccessproxy");
    
        var trnameObjectFirewallAccessproxyApigateway = new Fortimanager.ObjectFirewallAccessproxyApigateway("trnameObjectFirewallAccessproxyApigateway", new()
        {
            Fosid = 1,
            AccessProxy = trnameObjectFirewallAccessproxy.Name,
        }, new CustomResourceOptions
        {
            DependsOn =
            {
                trnameObjectFirewallAccessproxy,
            },
        });
    
        var trnameObjectFirewallAccessproxyApigatewayRealservers = new Fortimanager.ObjectFirewallAccessproxyApigatewayRealservers("trnameObjectFirewallAccessproxyApigatewayRealservers", new()
        {
            AccessProxy = trnameObjectFirewallAccessproxy.Name,
            ApiGateway = trnameObjectFirewallAccessproxyApigateway.Fosid,
            HealthCheck = "enable",
            HealthCheckProto = "ping",
            Fosid = 2,
            Ip = "2.3.4.5",
        }, new CustomResourceOptions
        {
            DependsOn =
            {
                trnameObjectFirewallAccessproxyApigateway,
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.fortimanager.ObjectFirewallAccessproxy;
    import com.pulumi.fortimanager.ObjectFirewallAccessproxyApigateway;
    import com.pulumi.fortimanager.ObjectFirewallAccessproxyApigatewayArgs;
    import com.pulumi.fortimanager.ObjectFirewallAccessproxyApigatewayRealservers;
    import com.pulumi.fortimanager.ObjectFirewallAccessproxyApigatewayRealserversArgs;
    import com.pulumi.resources.CustomResourceOptions;
    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 trnameObjectFirewallAccessproxy = new ObjectFirewallAccessproxy("trnameObjectFirewallAccessproxy");
    
            var trnameObjectFirewallAccessproxyApigateway = new ObjectFirewallAccessproxyApigateway("trnameObjectFirewallAccessproxyApigateway", ObjectFirewallAccessproxyApigatewayArgs.builder()
                .fosid(1)
                .accessProxy(trnameObjectFirewallAccessproxy.name())
                .build(), CustomResourceOptions.builder()
                    .dependsOn(trnameObjectFirewallAccessproxy)
                    .build());
    
            var trnameObjectFirewallAccessproxyApigatewayRealservers = new ObjectFirewallAccessproxyApigatewayRealservers("trnameObjectFirewallAccessproxyApigatewayRealservers", ObjectFirewallAccessproxyApigatewayRealserversArgs.builder()
                .accessProxy(trnameObjectFirewallAccessproxy.name())
                .apiGateway(trnameObjectFirewallAccessproxyApigateway.fosid())
                .healthCheck("enable")
                .healthCheckProto("ping")
                .fosid(2)
                .ip("2.3.4.5")
                .build(), CustomResourceOptions.builder()
                    .dependsOn(trnameObjectFirewallAccessproxyApigateway)
                    .build());
    
        }
    }
    
    resources:
      trnameObjectFirewallAccessproxyApigatewayRealservers:
        type: fortimanager:ObjectFirewallAccessproxyApigatewayRealservers
        properties:
          accessProxy: ${trnameObjectFirewallAccessproxy.name}
          apiGateway: ${trnameObjectFirewallAccessproxyApigateway.fosid}
          healthCheck: enable
          healthCheckProto: ping
          fosid: 2
          ip: 2.3.4.5
        options:
          dependsOn:
            - ${trnameObjectFirewallAccessproxyApigateway}
      trnameObjectFirewallAccessproxyApigateway:
        type: fortimanager:ObjectFirewallAccessproxyApigateway
        properties:
          fosid: 1
          accessProxy: ${trnameObjectFirewallAccessproxy.name}
        options:
          dependsOn:
            - ${trnameObjectFirewallAccessproxy}
      trnameObjectFirewallAccessproxy:
        type: fortimanager:ObjectFirewallAccessproxy
    

    Create ObjectFirewallAccessproxyApigatewayRealservers Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new ObjectFirewallAccessproxyApigatewayRealservers(name: string, args: ObjectFirewallAccessproxyApigatewayRealserversArgs, opts?: CustomResourceOptions);
    @overload
    def ObjectFirewallAccessproxyApigatewayRealservers(resource_name: str,
                                                       args: ObjectFirewallAccessproxyApigatewayRealserversArgs,
                                                       opts: Optional[ResourceOptions] = None)
    
    @overload
    def ObjectFirewallAccessproxyApigatewayRealservers(resource_name: str,
                                                       opts: Optional[ResourceOptions] = None,
                                                       api_gateway: Optional[str] = None,
                                                       access_proxy: Optional[str] = None,
                                                       ip: Optional[str] = None,
                                                       weight: Optional[float] = None,
                                                       addr_type: Optional[str] = None,
                                                       domain: Optional[str] = None,
                                                       external_auth: Optional[str] = None,
                                                       fosid: Optional[float] = None,
                                                       health_check: Optional[str] = None,
                                                       health_check_proto: Optional[str] = None,
                                                       holddown_interval: Optional[str] = None,
                                                       object_firewall_accessproxy_apigateway_realservers_id: Optional[str] = None,
                                                       address: Optional[str] = None,
                                                       adom: Optional[str] = None,
                                                       http_host: Optional[str] = None,
                                                       port: Optional[float] = None,
                                                       scopetype: Optional[str] = None,
                                                       ssh_client_cert: Optional[str] = None,
                                                       ssh_host_key: Optional[str] = None,
                                                       ssh_host_key_validation: Optional[str] = None,
                                                       status: Optional[str] = None,
                                                       translate_host: Optional[str] = None,
                                                       tunnel_encryption: Optional[str] = None,
                                                       type: Optional[str] = None,
                                                       mappedport: Optional[str] = None)
    func NewObjectFirewallAccessproxyApigatewayRealservers(ctx *Context, name string, args ObjectFirewallAccessproxyApigatewayRealserversArgs, opts ...ResourceOption) (*ObjectFirewallAccessproxyApigatewayRealservers, error)
    public ObjectFirewallAccessproxyApigatewayRealservers(string name, ObjectFirewallAccessproxyApigatewayRealserversArgs args, CustomResourceOptions? opts = null)
    public ObjectFirewallAccessproxyApigatewayRealservers(String name, ObjectFirewallAccessproxyApigatewayRealserversArgs args)
    public ObjectFirewallAccessproxyApigatewayRealservers(String name, ObjectFirewallAccessproxyApigatewayRealserversArgs args, CustomResourceOptions options)
    
    type: fortimanager:ObjectFirewallAccessproxyApigatewayRealservers
    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 ObjectFirewallAccessproxyApigatewayRealserversArgs
    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 ObjectFirewallAccessproxyApigatewayRealserversArgs
    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 ObjectFirewallAccessproxyApigatewayRealserversArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args ObjectFirewallAccessproxyApigatewayRealserversArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args ObjectFirewallAccessproxyApigatewayRealserversArgs
    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 objectFirewallAccessproxyApigatewayRealserversResource = new Fortimanager.ObjectFirewallAccessproxyApigatewayRealservers("objectFirewallAccessproxyApigatewayRealserversResource", new()
    {
        ApiGateway = "string",
        AccessProxy = "string",
        Ip = "string",
        Weight = 0,
        AddrType = "string",
        Domain = "string",
        ExternalAuth = "string",
        Fosid = 0,
        HealthCheck = "string",
        HealthCheckProto = "string",
        HolddownInterval = "string",
        ObjectFirewallAccessproxyApigatewayRealserversId = "string",
        Address = "string",
        Adom = "string",
        HttpHost = "string",
        Port = 0,
        Scopetype = "string",
        SshClientCert = "string",
        SshHostKey = "string",
        SshHostKeyValidation = "string",
        Status = "string",
        TranslateHost = "string",
        TunnelEncryption = "string",
        Type = "string",
        Mappedport = "string",
    });
    
    example, err := fortimanager.NewObjectFirewallAccessproxyApigatewayRealservers(ctx, "objectFirewallAccessproxyApigatewayRealserversResource", &fortimanager.ObjectFirewallAccessproxyApigatewayRealserversArgs{
    ApiGateway: pulumi.String("string"),
    AccessProxy: pulumi.String("string"),
    Ip: pulumi.String("string"),
    Weight: pulumi.Float64(0),
    AddrType: pulumi.String("string"),
    Domain: pulumi.String("string"),
    ExternalAuth: pulumi.String("string"),
    Fosid: pulumi.Float64(0),
    HealthCheck: pulumi.String("string"),
    HealthCheckProto: pulumi.String("string"),
    HolddownInterval: pulumi.String("string"),
    ObjectFirewallAccessproxyApigatewayRealserversId: pulumi.String("string"),
    Address: pulumi.String("string"),
    Adom: pulumi.String("string"),
    HttpHost: pulumi.String("string"),
    Port: pulumi.Float64(0),
    Scopetype: pulumi.String("string"),
    SshClientCert: pulumi.String("string"),
    SshHostKey: pulumi.String("string"),
    SshHostKeyValidation: pulumi.String("string"),
    Status: pulumi.String("string"),
    TranslateHost: pulumi.String("string"),
    TunnelEncryption: pulumi.String("string"),
    Type: pulumi.String("string"),
    Mappedport: pulumi.String("string"),
    })
    
    var objectFirewallAccessproxyApigatewayRealserversResource = new ObjectFirewallAccessproxyApigatewayRealservers("objectFirewallAccessproxyApigatewayRealserversResource", ObjectFirewallAccessproxyApigatewayRealserversArgs.builder()
        .apiGateway("string")
        .accessProxy("string")
        .ip("string")
        .weight(0)
        .addrType("string")
        .domain("string")
        .externalAuth("string")
        .fosid(0)
        .healthCheck("string")
        .healthCheckProto("string")
        .holddownInterval("string")
        .objectFirewallAccessproxyApigatewayRealserversId("string")
        .address("string")
        .adom("string")
        .httpHost("string")
        .port(0)
        .scopetype("string")
        .sshClientCert("string")
        .sshHostKey("string")
        .sshHostKeyValidation("string")
        .status("string")
        .translateHost("string")
        .tunnelEncryption("string")
        .type("string")
        .mappedport("string")
        .build());
    
    object_firewall_accessproxy_apigateway_realservers_resource = fortimanager.ObjectFirewallAccessproxyApigatewayRealservers("objectFirewallAccessproxyApigatewayRealserversResource",
        api_gateway="string",
        access_proxy="string",
        ip="string",
        weight=0,
        addr_type="string",
        domain="string",
        external_auth="string",
        fosid=0,
        health_check="string",
        health_check_proto="string",
        holddown_interval="string",
        object_firewall_accessproxy_apigateway_realservers_id="string",
        address="string",
        adom="string",
        http_host="string",
        port=0,
        scopetype="string",
        ssh_client_cert="string",
        ssh_host_key="string",
        ssh_host_key_validation="string",
        status="string",
        translate_host="string",
        tunnel_encryption="string",
        type="string",
        mappedport="string")
    
    const objectFirewallAccessproxyApigatewayRealserversResource = new fortimanager.ObjectFirewallAccessproxyApigatewayRealservers("objectFirewallAccessproxyApigatewayRealserversResource", {
        apiGateway: "string",
        accessProxy: "string",
        ip: "string",
        weight: 0,
        addrType: "string",
        domain: "string",
        externalAuth: "string",
        fosid: 0,
        healthCheck: "string",
        healthCheckProto: "string",
        holddownInterval: "string",
        objectFirewallAccessproxyApigatewayRealserversId: "string",
        address: "string",
        adom: "string",
        httpHost: "string",
        port: 0,
        scopetype: "string",
        sshClientCert: "string",
        sshHostKey: "string",
        sshHostKeyValidation: "string",
        status: "string",
        translateHost: "string",
        tunnelEncryption: "string",
        type: "string",
        mappedport: "string",
    });
    
    type: fortimanager:ObjectFirewallAccessproxyApigatewayRealservers
    properties:
        accessProxy: string
        addrType: string
        address: string
        adom: string
        apiGateway: string
        domain: string
        externalAuth: string
        fosid: 0
        healthCheck: string
        healthCheckProto: string
        holddownInterval: string
        httpHost: string
        ip: string
        mappedport: string
        objectFirewallAccessproxyApigatewayRealserversId: string
        port: 0
        scopetype: string
        sshClientCert: string
        sshHostKey: string
        sshHostKeyValidation: string
        status: string
        translateHost: string
        tunnelEncryption: string
        type: string
        weight: 0
    

    ObjectFirewallAccessproxyApigatewayRealservers 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 ObjectFirewallAccessproxyApigatewayRealservers resource accepts the following input properties:

    AccessProxy string
    Access Proxy.
    ApiGateway string
    Api Gateway.
    AddrType string
    Type of address. Valid values: fqdn, ip.
    Address string
    Address or address group of the real server.
    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    Domain string
    Wildcard domain name of the real server.
    ExternalAuth string
    Enable/disable use of external browser as user-agent for SAML user authentication. Valid values: disable, enable.
    Fosid double
    Real server ID.
    HealthCheck string
    Enable to check the responsiveness of the real server before forwarding traffic. Valid values: disable, enable.
    HealthCheckProto string
    Protocol of the health check monitor to use when polling to determine server's connectivity status. Valid values: ping, http, tcp-connect.
    HolddownInterval string
    Enable/disable holddown timer. Server will be considered active and reachable once the holddown period has expired (30 seconds). Valid values: disable, enable.
    HttpHost string
    HTTP server domain name in HTTP header.
    Ip string
    IP address of the real server.
    Mappedport string
    Port for communicating with the real server.
    ObjectFirewallAccessproxyApigatewayRealserversId string
    an identifier for the resource with format {{fosid}}.
    Port double
    Port for communicating with the real server.
    Scopetype string
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    SshClientCert string
    Set access-proxy SSH client certificate profile.
    SshHostKey string
    One or more server host key.
    SshHostKeyValidation string
    Enable/disable SSH real server host key validation. Valid values: disable, enable.
    Status string
    Set the status of the real server to active so that it can accept traffic, or on standby or disabled so no traffic is sent. Valid values: active, standby, disable.
    TranslateHost string
    Enable/disable translation of hostname/IP from virtual server to real server. Valid values: disable, enable.
    TunnelEncryption string
    Tunnel encryption. Valid values: disable, enable.
    Type string
    TCP forwarding server type. Valid values: tcp-forwarding, ssh.
    Weight double
    Weight of the real server. If weighted load balancing is enabled, the server with the highest weight gets more connections.
    AccessProxy string
    Access Proxy.
    ApiGateway string
    Api Gateway.
    AddrType string
    Type of address. Valid values: fqdn, ip.
    Address string
    Address or address group of the real server.
    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    Domain string
    Wildcard domain name of the real server.
    ExternalAuth string
    Enable/disable use of external browser as user-agent for SAML user authentication. Valid values: disable, enable.
    Fosid float64
    Real server ID.
    HealthCheck string
    Enable to check the responsiveness of the real server before forwarding traffic. Valid values: disable, enable.
    HealthCheckProto string
    Protocol of the health check monitor to use when polling to determine server's connectivity status. Valid values: ping, http, tcp-connect.
    HolddownInterval string
    Enable/disable holddown timer. Server will be considered active and reachable once the holddown period has expired (30 seconds). Valid values: disable, enable.
    HttpHost string
    HTTP server domain name in HTTP header.
    Ip string
    IP address of the real server.
    Mappedport string
    Port for communicating with the real server.
    ObjectFirewallAccessproxyApigatewayRealserversId string
    an identifier for the resource with format {{fosid}}.
    Port float64
    Port for communicating with the real server.
    Scopetype string
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    SshClientCert string
    Set access-proxy SSH client certificate profile.
    SshHostKey string
    One or more server host key.
    SshHostKeyValidation string
    Enable/disable SSH real server host key validation. Valid values: disable, enable.
    Status string
    Set the status of the real server to active so that it can accept traffic, or on standby or disabled so no traffic is sent. Valid values: active, standby, disable.
    TranslateHost string
    Enable/disable translation of hostname/IP from virtual server to real server. Valid values: disable, enable.
    TunnelEncryption string
    Tunnel encryption. Valid values: disable, enable.
    Type string
    TCP forwarding server type. Valid values: tcp-forwarding, ssh.
    Weight float64
    Weight of the real server. If weighted load balancing is enabled, the server with the highest weight gets more connections.
    accessProxy String
    Access Proxy.
    apiGateway String
    Api Gateway.
    addrType String
    Type of address. Valid values: fqdn, ip.
    address String
    Address or address group of the real server.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    domain String
    Wildcard domain name of the real server.
    externalAuth String
    Enable/disable use of external browser as user-agent for SAML user authentication. Valid values: disable, enable.
    fosid Double
    Real server ID.
    healthCheck String
    Enable to check the responsiveness of the real server before forwarding traffic. Valid values: disable, enable.
    healthCheckProto String
    Protocol of the health check monitor to use when polling to determine server's connectivity status. Valid values: ping, http, tcp-connect.
    holddownInterval String
    Enable/disable holddown timer. Server will be considered active and reachable once the holddown period has expired (30 seconds). Valid values: disable, enable.
    httpHost String
    HTTP server domain name in HTTP header.
    ip String
    IP address of the real server.
    mappedport String
    Port for communicating with the real server.
    objectFirewallAccessproxyApigatewayRealserversId String
    an identifier for the resource with format {{fosid}}.
    port Double
    Port for communicating with the real server.
    scopetype String
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    sshClientCert String
    Set access-proxy SSH client certificate profile.
    sshHostKey String
    One or more server host key.
    sshHostKeyValidation String
    Enable/disable SSH real server host key validation. Valid values: disable, enable.
    status String
    Set the status of the real server to active so that it can accept traffic, or on standby or disabled so no traffic is sent. Valid values: active, standby, disable.
    translateHost String
    Enable/disable translation of hostname/IP from virtual server to real server. Valid values: disable, enable.
    tunnelEncryption String
    Tunnel encryption. Valid values: disable, enable.
    type String
    TCP forwarding server type. Valid values: tcp-forwarding, ssh.
    weight Double
    Weight of the real server. If weighted load balancing is enabled, the server with the highest weight gets more connections.
    accessProxy string
    Access Proxy.
    apiGateway string
    Api Gateway.
    addrType string
    Type of address. Valid values: fqdn, ip.
    address string
    Address or address group of the real server.
    adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    domain string
    Wildcard domain name of the real server.
    externalAuth string
    Enable/disable use of external browser as user-agent for SAML user authentication. Valid values: disable, enable.
    fosid number
    Real server ID.
    healthCheck string
    Enable to check the responsiveness of the real server before forwarding traffic. Valid values: disable, enable.
    healthCheckProto string
    Protocol of the health check monitor to use when polling to determine server's connectivity status. Valid values: ping, http, tcp-connect.
    holddownInterval string
    Enable/disable holddown timer. Server will be considered active and reachable once the holddown period has expired (30 seconds). Valid values: disable, enable.
    httpHost string
    HTTP server domain name in HTTP header.
    ip string
    IP address of the real server.
    mappedport string
    Port for communicating with the real server.
    objectFirewallAccessproxyApigatewayRealserversId string
    an identifier for the resource with format {{fosid}}.
    port number
    Port for communicating with the real server.
    scopetype string
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    sshClientCert string
    Set access-proxy SSH client certificate profile.
    sshHostKey string
    One or more server host key.
    sshHostKeyValidation string
    Enable/disable SSH real server host key validation. Valid values: disable, enable.
    status string
    Set the status of the real server to active so that it can accept traffic, or on standby or disabled so no traffic is sent. Valid values: active, standby, disable.
    translateHost string
    Enable/disable translation of hostname/IP from virtual server to real server. Valid values: disable, enable.
    tunnelEncryption string
    Tunnel encryption. Valid values: disable, enable.
    type string
    TCP forwarding server type. Valid values: tcp-forwarding, ssh.
    weight number
    Weight of the real server. If weighted load balancing is enabled, the server with the highest weight gets more connections.
    access_proxy str
    Access Proxy.
    api_gateway str
    Api Gateway.
    addr_type str
    Type of address. Valid values: fqdn, ip.
    address str
    Address or address group of the real server.
    adom str
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    domain str
    Wildcard domain name of the real server.
    external_auth str
    Enable/disable use of external browser as user-agent for SAML user authentication. Valid values: disable, enable.
    fosid float
    Real server ID.
    health_check str
    Enable to check the responsiveness of the real server before forwarding traffic. Valid values: disable, enable.
    health_check_proto str
    Protocol of the health check monitor to use when polling to determine server's connectivity status. Valid values: ping, http, tcp-connect.
    holddown_interval str
    Enable/disable holddown timer. Server will be considered active and reachable once the holddown period has expired (30 seconds). Valid values: disable, enable.
    http_host str
    HTTP server domain name in HTTP header.
    ip str
    IP address of the real server.
    mappedport str
    Port for communicating with the real server.
    object_firewall_accessproxy_apigateway_realservers_id str
    an identifier for the resource with format {{fosid}}.
    port float
    Port for communicating with the real server.
    scopetype str
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    ssh_client_cert str
    Set access-proxy SSH client certificate profile.
    ssh_host_key str
    One or more server host key.
    ssh_host_key_validation str
    Enable/disable SSH real server host key validation. Valid values: disable, enable.
    status str
    Set the status of the real server to active so that it can accept traffic, or on standby or disabled so no traffic is sent. Valid values: active, standby, disable.
    translate_host str
    Enable/disable translation of hostname/IP from virtual server to real server. Valid values: disable, enable.
    tunnel_encryption str
    Tunnel encryption. Valid values: disable, enable.
    type str
    TCP forwarding server type. Valid values: tcp-forwarding, ssh.
    weight float
    Weight of the real server. If weighted load balancing is enabled, the server with the highest weight gets more connections.
    accessProxy String
    Access Proxy.
    apiGateway String
    Api Gateway.
    addrType String
    Type of address. Valid values: fqdn, ip.
    address String
    Address or address group of the real server.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    domain String
    Wildcard domain name of the real server.
    externalAuth String
    Enable/disable use of external browser as user-agent for SAML user authentication. Valid values: disable, enable.
    fosid Number
    Real server ID.
    healthCheck String
    Enable to check the responsiveness of the real server before forwarding traffic. Valid values: disable, enable.
    healthCheckProto String
    Protocol of the health check monitor to use when polling to determine server's connectivity status. Valid values: ping, http, tcp-connect.
    holddownInterval String
    Enable/disable holddown timer. Server will be considered active and reachable once the holddown period has expired (30 seconds). Valid values: disable, enable.
    httpHost String
    HTTP server domain name in HTTP header.
    ip String
    IP address of the real server.
    mappedport String
    Port for communicating with the real server.
    objectFirewallAccessproxyApigatewayRealserversId String
    an identifier for the resource with format {{fosid}}.
    port Number
    Port for communicating with the real server.
    scopetype String
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    sshClientCert String
    Set access-proxy SSH client certificate profile.
    sshHostKey String
    One or more server host key.
    sshHostKeyValidation String
    Enable/disable SSH real server host key validation. Valid values: disable, enable.
    status String
    Set the status of the real server to active so that it can accept traffic, or on standby or disabled so no traffic is sent. Valid values: active, standby, disable.
    translateHost String
    Enable/disable translation of hostname/IP from virtual server to real server. Valid values: disable, enable.
    tunnelEncryption String
    Tunnel encryption. Valid values: disable, enable.
    type String
    TCP forwarding server type. Valid values: tcp-forwarding, ssh.
    weight Number
    Weight of the real server. If weighted load balancing is enabled, the server with the highest weight gets more connections.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the ObjectFirewallAccessproxyApigatewayRealservers 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 ObjectFirewallAccessproxyApigatewayRealservers Resource

    Get an existing ObjectFirewallAccessproxyApigatewayRealservers 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?: ObjectFirewallAccessproxyApigatewayRealserversState, opts?: CustomResourceOptions): ObjectFirewallAccessproxyApigatewayRealservers
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            access_proxy: Optional[str] = None,
            addr_type: Optional[str] = None,
            address: Optional[str] = None,
            adom: Optional[str] = None,
            api_gateway: Optional[str] = None,
            domain: Optional[str] = None,
            external_auth: Optional[str] = None,
            fosid: Optional[float] = None,
            health_check: Optional[str] = None,
            health_check_proto: Optional[str] = None,
            holddown_interval: Optional[str] = None,
            http_host: Optional[str] = None,
            ip: Optional[str] = None,
            mappedport: Optional[str] = None,
            object_firewall_accessproxy_apigateway_realservers_id: Optional[str] = None,
            port: Optional[float] = None,
            scopetype: Optional[str] = None,
            ssh_client_cert: Optional[str] = None,
            ssh_host_key: Optional[str] = None,
            ssh_host_key_validation: Optional[str] = None,
            status: Optional[str] = None,
            translate_host: Optional[str] = None,
            tunnel_encryption: Optional[str] = None,
            type: Optional[str] = None,
            weight: Optional[float] = None) -> ObjectFirewallAccessproxyApigatewayRealservers
    func GetObjectFirewallAccessproxyApigatewayRealservers(ctx *Context, name string, id IDInput, state *ObjectFirewallAccessproxyApigatewayRealserversState, opts ...ResourceOption) (*ObjectFirewallAccessproxyApigatewayRealservers, error)
    public static ObjectFirewallAccessproxyApigatewayRealservers Get(string name, Input<string> id, ObjectFirewallAccessproxyApigatewayRealserversState? state, CustomResourceOptions? opts = null)
    public static ObjectFirewallAccessproxyApigatewayRealservers get(String name, Output<String> id, ObjectFirewallAccessproxyApigatewayRealserversState state, CustomResourceOptions options)
    resources:  _:    type: fortimanager:ObjectFirewallAccessproxyApigatewayRealservers    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.
    The following state arguments are supported:
    AccessProxy string
    Access Proxy.
    AddrType string
    Type of address. Valid values: fqdn, ip.
    Address string
    Address or address group of the real server.
    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    ApiGateway string
    Api Gateway.
    Domain string
    Wildcard domain name of the real server.
    ExternalAuth string
    Enable/disable use of external browser as user-agent for SAML user authentication. Valid values: disable, enable.
    Fosid double
    Real server ID.
    HealthCheck string
    Enable to check the responsiveness of the real server before forwarding traffic. Valid values: disable, enable.
    HealthCheckProto string
    Protocol of the health check monitor to use when polling to determine server's connectivity status. Valid values: ping, http, tcp-connect.
    HolddownInterval string
    Enable/disable holddown timer. Server will be considered active and reachable once the holddown period has expired (30 seconds). Valid values: disable, enable.
    HttpHost string
    HTTP server domain name in HTTP header.
    Ip string
    IP address of the real server.
    Mappedport string
    Port for communicating with the real server.
    ObjectFirewallAccessproxyApigatewayRealserversId string
    an identifier for the resource with format {{fosid}}.
    Port double
    Port for communicating with the real server.
    Scopetype string
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    SshClientCert string
    Set access-proxy SSH client certificate profile.
    SshHostKey string
    One or more server host key.
    SshHostKeyValidation string
    Enable/disable SSH real server host key validation. Valid values: disable, enable.
    Status string
    Set the status of the real server to active so that it can accept traffic, or on standby or disabled so no traffic is sent. Valid values: active, standby, disable.
    TranslateHost string
    Enable/disable translation of hostname/IP from virtual server to real server. Valid values: disable, enable.
    TunnelEncryption string
    Tunnel encryption. Valid values: disable, enable.
    Type string
    TCP forwarding server type. Valid values: tcp-forwarding, ssh.
    Weight double
    Weight of the real server. If weighted load balancing is enabled, the server with the highest weight gets more connections.
    AccessProxy string
    Access Proxy.
    AddrType string
    Type of address. Valid values: fqdn, ip.
    Address string
    Address or address group of the real server.
    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    ApiGateway string
    Api Gateway.
    Domain string
    Wildcard domain name of the real server.
    ExternalAuth string
    Enable/disable use of external browser as user-agent for SAML user authentication. Valid values: disable, enable.
    Fosid float64
    Real server ID.
    HealthCheck string
    Enable to check the responsiveness of the real server before forwarding traffic. Valid values: disable, enable.
    HealthCheckProto string
    Protocol of the health check monitor to use when polling to determine server's connectivity status. Valid values: ping, http, tcp-connect.
    HolddownInterval string
    Enable/disable holddown timer. Server will be considered active and reachable once the holddown period has expired (30 seconds). Valid values: disable, enable.
    HttpHost string
    HTTP server domain name in HTTP header.
    Ip string
    IP address of the real server.
    Mappedport string
    Port for communicating with the real server.
    ObjectFirewallAccessproxyApigatewayRealserversId string
    an identifier for the resource with format {{fosid}}.
    Port float64
    Port for communicating with the real server.
    Scopetype string
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    SshClientCert string
    Set access-proxy SSH client certificate profile.
    SshHostKey string
    One or more server host key.
    SshHostKeyValidation string
    Enable/disable SSH real server host key validation. Valid values: disable, enable.
    Status string
    Set the status of the real server to active so that it can accept traffic, or on standby or disabled so no traffic is sent. Valid values: active, standby, disable.
    TranslateHost string
    Enable/disable translation of hostname/IP from virtual server to real server. Valid values: disable, enable.
    TunnelEncryption string
    Tunnel encryption. Valid values: disable, enable.
    Type string
    TCP forwarding server type. Valid values: tcp-forwarding, ssh.
    Weight float64
    Weight of the real server. If weighted load balancing is enabled, the server with the highest weight gets more connections.
    accessProxy String
    Access Proxy.
    addrType String
    Type of address. Valid values: fqdn, ip.
    address String
    Address or address group of the real server.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    apiGateway String
    Api Gateway.
    domain String
    Wildcard domain name of the real server.
    externalAuth String
    Enable/disable use of external browser as user-agent for SAML user authentication. Valid values: disable, enable.
    fosid Double
    Real server ID.
    healthCheck String
    Enable to check the responsiveness of the real server before forwarding traffic. Valid values: disable, enable.
    healthCheckProto String
    Protocol of the health check monitor to use when polling to determine server's connectivity status. Valid values: ping, http, tcp-connect.
    holddownInterval String
    Enable/disable holddown timer. Server will be considered active and reachable once the holddown period has expired (30 seconds). Valid values: disable, enable.
    httpHost String
    HTTP server domain name in HTTP header.
    ip String
    IP address of the real server.
    mappedport String
    Port for communicating with the real server.
    objectFirewallAccessproxyApigatewayRealserversId String
    an identifier for the resource with format {{fosid}}.
    port Double
    Port for communicating with the real server.
    scopetype String
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    sshClientCert String
    Set access-proxy SSH client certificate profile.
    sshHostKey String
    One or more server host key.
    sshHostKeyValidation String
    Enable/disable SSH real server host key validation. Valid values: disable, enable.
    status String
    Set the status of the real server to active so that it can accept traffic, or on standby or disabled so no traffic is sent. Valid values: active, standby, disable.
    translateHost String
    Enable/disable translation of hostname/IP from virtual server to real server. Valid values: disable, enable.
    tunnelEncryption String
    Tunnel encryption. Valid values: disable, enable.
    type String
    TCP forwarding server type. Valid values: tcp-forwarding, ssh.
    weight Double
    Weight of the real server. If weighted load balancing is enabled, the server with the highest weight gets more connections.
    accessProxy string
    Access Proxy.
    addrType string
    Type of address. Valid values: fqdn, ip.
    address string
    Address or address group of the real server.
    adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    apiGateway string
    Api Gateway.
    domain string
    Wildcard domain name of the real server.
    externalAuth string
    Enable/disable use of external browser as user-agent for SAML user authentication. Valid values: disable, enable.
    fosid number
    Real server ID.
    healthCheck string
    Enable to check the responsiveness of the real server before forwarding traffic. Valid values: disable, enable.
    healthCheckProto string
    Protocol of the health check monitor to use when polling to determine server's connectivity status. Valid values: ping, http, tcp-connect.
    holddownInterval string
    Enable/disable holddown timer. Server will be considered active and reachable once the holddown period has expired (30 seconds). Valid values: disable, enable.
    httpHost string
    HTTP server domain name in HTTP header.
    ip string
    IP address of the real server.
    mappedport string
    Port for communicating with the real server.
    objectFirewallAccessproxyApigatewayRealserversId string
    an identifier for the resource with format {{fosid}}.
    port number
    Port for communicating with the real server.
    scopetype string
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    sshClientCert string
    Set access-proxy SSH client certificate profile.
    sshHostKey string
    One or more server host key.
    sshHostKeyValidation string
    Enable/disable SSH real server host key validation. Valid values: disable, enable.
    status string
    Set the status of the real server to active so that it can accept traffic, or on standby or disabled so no traffic is sent. Valid values: active, standby, disable.
    translateHost string
    Enable/disable translation of hostname/IP from virtual server to real server. Valid values: disable, enable.
    tunnelEncryption string
    Tunnel encryption. Valid values: disable, enable.
    type string
    TCP forwarding server type. Valid values: tcp-forwarding, ssh.
    weight number
    Weight of the real server. If weighted load balancing is enabled, the server with the highest weight gets more connections.
    access_proxy str
    Access Proxy.
    addr_type str
    Type of address. Valid values: fqdn, ip.
    address str
    Address or address group of the real server.
    adom str
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    api_gateway str
    Api Gateway.
    domain str
    Wildcard domain name of the real server.
    external_auth str
    Enable/disable use of external browser as user-agent for SAML user authentication. Valid values: disable, enable.
    fosid float
    Real server ID.
    health_check str
    Enable to check the responsiveness of the real server before forwarding traffic. Valid values: disable, enable.
    health_check_proto str
    Protocol of the health check monitor to use when polling to determine server's connectivity status. Valid values: ping, http, tcp-connect.
    holddown_interval str
    Enable/disable holddown timer. Server will be considered active and reachable once the holddown period has expired (30 seconds). Valid values: disable, enable.
    http_host str
    HTTP server domain name in HTTP header.
    ip str
    IP address of the real server.
    mappedport str
    Port for communicating with the real server.
    object_firewall_accessproxy_apigateway_realservers_id str
    an identifier for the resource with format {{fosid}}.
    port float
    Port for communicating with the real server.
    scopetype str
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    ssh_client_cert str
    Set access-proxy SSH client certificate profile.
    ssh_host_key str
    One or more server host key.
    ssh_host_key_validation str
    Enable/disable SSH real server host key validation. Valid values: disable, enable.
    status str
    Set the status of the real server to active so that it can accept traffic, or on standby or disabled so no traffic is sent. Valid values: active, standby, disable.
    translate_host str
    Enable/disable translation of hostname/IP from virtual server to real server. Valid values: disable, enable.
    tunnel_encryption str
    Tunnel encryption. Valid values: disable, enable.
    type str
    TCP forwarding server type. Valid values: tcp-forwarding, ssh.
    weight float
    Weight of the real server. If weighted load balancing is enabled, the server with the highest weight gets more connections.
    accessProxy String
    Access Proxy.
    addrType String
    Type of address. Valid values: fqdn, ip.
    address String
    Address or address group of the real server.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    apiGateway String
    Api Gateway.
    domain String
    Wildcard domain name of the real server.
    externalAuth String
    Enable/disable use of external browser as user-agent for SAML user authentication. Valid values: disable, enable.
    fosid Number
    Real server ID.
    healthCheck String
    Enable to check the responsiveness of the real server before forwarding traffic. Valid values: disable, enable.
    healthCheckProto String
    Protocol of the health check monitor to use when polling to determine server's connectivity status. Valid values: ping, http, tcp-connect.
    holddownInterval String
    Enable/disable holddown timer. Server will be considered active and reachable once the holddown period has expired (30 seconds). Valid values: disable, enable.
    httpHost String
    HTTP server domain name in HTTP header.
    ip String
    IP address of the real server.
    mappedport String
    Port for communicating with the real server.
    objectFirewallAccessproxyApigatewayRealserversId String
    an identifier for the resource with format {{fosid}}.
    port Number
    Port for communicating with the real server.
    scopetype String
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    sshClientCert String
    Set access-proxy SSH client certificate profile.
    sshHostKey String
    One or more server host key.
    sshHostKeyValidation String
    Enable/disable SSH real server host key validation. Valid values: disable, enable.
    status String
    Set the status of the real server to active so that it can accept traffic, or on standby or disabled so no traffic is sent. Valid values: active, standby, disable.
    translateHost String
    Enable/disable translation of hostname/IP from virtual server to real server. Valid values: disable, enable.
    tunnelEncryption String
    Tunnel encryption. Valid values: disable, enable.
    type String
    TCP forwarding server type. Valid values: tcp-forwarding, ssh.
    weight Number
    Weight of the real server. If weighted load balancing is enabled, the server with the highest weight gets more connections.

    Import

    ObjectFirewall AccessProxyApiGatewayRealservers can be imported using any of these accepted formats:

    Set import_options = [“access_proxy=YOUR_VALUE”, “api_gateway=YOUR_VALUE”] in the provider section.

    $ export “FORTIMANAGER_IMPORT_TABLE”=“true”

    $ pulumi import fortimanager:index/objectFirewallAccessproxyApigatewayRealservers:ObjectFirewallAccessproxyApigatewayRealservers labelname {{fosid}}
    

    $ unset “FORTIMANAGER_IMPORT_TABLE”

    -> Hint: The scopetype and adom for import will directly inherit the scopetype and adom configuration of the provider.

    To learn more about importing existing cloud resources, see Importing resources.

    Package Details

    Repository
    fortimanager fortinetdev/terraform-provider-fortimanager
    License
    Notes
    This Pulumi package is based on the fortimanager Terraform Provider.
    fortimanager logo
    fortimanager 1.13.0 published on Thursday, Mar 13, 2025 by fortinetdev