fortimanager.ObjectFirewallAccessproxy6Apigateway6Realservers
Explore with Pulumi AI
Select the real servers that this Access Proxy will distribute traffic to.
This resource is a sub resource for variable
realservers
of resourcefortimanager.ObjectFirewallAccessproxy6Apigateway6
. 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 trname4 = new fortimanager.ObjectFirewallAccessproxy6("trname4", {});
const trname3 = new fortimanager.ObjectFirewallAccessproxy6Apigateway6("trname3", {
fosid: 2,
accessProxy6: trname4.name,
}, {
dependsOn: [trname4],
});
const trname = new fortimanager.ObjectFirewallAccessproxy6Apigateway6Realservers("trname", {
accessProxy6: trname4.name,
apiGateway6: trname3.fosid,
fosid: 1,
ip: "2001:db8:85a3::8a2e:370:7334",
mappedport: "23",
}, {
dependsOn: [trname3],
});
import pulumi
import pulumi_fortimanager as fortimanager
trname4 = fortimanager.ObjectFirewallAccessproxy6("trname4")
trname3 = fortimanager.ObjectFirewallAccessproxy6Apigateway6("trname3",
fosid=2,
access_proxy6=trname4.name,
opts = pulumi.ResourceOptions(depends_on=[trname4]))
trname = fortimanager.ObjectFirewallAccessproxy6Apigateway6Realservers("trname",
access_proxy6=trname4.name,
api_gateway6=trname3.fosid,
fosid=1,
ip="2001:db8:85a3::8a2e:370:7334",
mappedport="23",
opts = pulumi.ResourceOptions(depends_on=[trname3]))
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 {
trname4, err := fortimanager.NewObjectFirewallAccessproxy6(ctx, "trname4", nil)
if err != nil {
return err
}
trname3, err := fortimanager.NewObjectFirewallAccessproxy6Apigateway6(ctx, "trname3", &fortimanager.ObjectFirewallAccessproxy6Apigateway6Args{
Fosid: pulumi.Float64(2),
AccessProxy6: trname4.Name,
}, pulumi.DependsOn([]pulumi.Resource{
trname4,
}))
if err != nil {
return err
}
_, err = fortimanager.NewObjectFirewallAccessproxy6Apigateway6Realservers(ctx, "trname", &fortimanager.ObjectFirewallAccessproxy6Apigateway6RealserversArgs{
AccessProxy6: trname4.Name,
ApiGateway6: trname3.Fosid,
Fosid: pulumi.Float64(1),
Ip: pulumi.String("2001:db8:85a3::8a2e:370:7334"),
Mappedport: pulumi.String("23"),
}, pulumi.DependsOn([]pulumi.Resource{
trname3,
}))
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 trname4 = new Fortimanager.ObjectFirewallAccessproxy6("trname4");
var trname3 = new Fortimanager.ObjectFirewallAccessproxy6Apigateway6("trname3", new()
{
Fosid = 2,
AccessProxy6 = trname4.Name,
}, new CustomResourceOptions
{
DependsOn =
{
trname4,
},
});
var trname = new Fortimanager.ObjectFirewallAccessproxy6Apigateway6Realservers("trname", new()
{
AccessProxy6 = trname4.Name,
ApiGateway6 = trname3.Fosid,
Fosid = 1,
Ip = "2001:db8:85a3::8a2e:370:7334",
Mappedport = "23",
}, new CustomResourceOptions
{
DependsOn =
{
trname3,
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.fortimanager.ObjectFirewallAccessproxy6;
import com.pulumi.fortimanager.ObjectFirewallAccessproxy6Apigateway6;
import com.pulumi.fortimanager.ObjectFirewallAccessproxy6Apigateway6Args;
import com.pulumi.fortimanager.ObjectFirewallAccessproxy6Apigateway6Realservers;
import com.pulumi.fortimanager.ObjectFirewallAccessproxy6Apigateway6RealserversArgs;
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 trname4 = new ObjectFirewallAccessproxy6("trname4");
var trname3 = new ObjectFirewallAccessproxy6Apigateway6("trname3", ObjectFirewallAccessproxy6Apigateway6Args.builder()
.fosid(2)
.accessProxy6(trname4.name())
.build(), CustomResourceOptions.builder()
.dependsOn(trname4)
.build());
var trname = new ObjectFirewallAccessproxy6Apigateway6Realservers("trname", ObjectFirewallAccessproxy6Apigateway6RealserversArgs.builder()
.accessProxy6(trname4.name())
.apiGateway6(trname3.fosid())
.fosid(1)
.ip("2001:db8:85a3::8a2e:370:7334")
.mappedport(23)
.build(), CustomResourceOptions.builder()
.dependsOn(trname3)
.build());
}
}
resources:
trname:
type: fortimanager:ObjectFirewallAccessproxy6Apigateway6Realservers
properties:
accessProxy6: ${trname4.name}
apiGateway6: ${trname3.fosid}
fosid: 1
ip: 2001:db8:85a3::8a2e:370:7334
mappedport: 23
options:
dependsOn:
- ${trname3}
trname3:
type: fortimanager:ObjectFirewallAccessproxy6Apigateway6
properties:
fosid: 2
accessProxy6: ${trname4.name}
options:
dependsOn:
- ${trname4}
trname4:
type: fortimanager:ObjectFirewallAccessproxy6
Create ObjectFirewallAccessproxy6Apigateway6Realservers Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new ObjectFirewallAccessproxy6Apigateway6Realservers(name: string, args: ObjectFirewallAccessproxy6Apigateway6RealserversArgs, opts?: CustomResourceOptions);
@overload
def ObjectFirewallAccessproxy6Apigateway6Realservers(resource_name: str,
args: ObjectFirewallAccessproxy6Apigateway6RealserversArgs,
opts: Optional[ResourceOptions] = None)
@overload
def ObjectFirewallAccessproxy6Apigateway6Realservers(resource_name: str,
opts: Optional[ResourceOptions] = None,
api_gateway6: Optional[str] = None,
access_proxy6: 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_accessproxy6_apigateway6_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_validation: Optional[str] = None,
ssh_host_keys: Optional[Sequence[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 NewObjectFirewallAccessproxy6Apigateway6Realservers(ctx *Context, name string, args ObjectFirewallAccessproxy6Apigateway6RealserversArgs, opts ...ResourceOption) (*ObjectFirewallAccessproxy6Apigateway6Realservers, error)
public ObjectFirewallAccessproxy6Apigateway6Realservers(string name, ObjectFirewallAccessproxy6Apigateway6RealserversArgs args, CustomResourceOptions? opts = null)
public ObjectFirewallAccessproxy6Apigateway6Realservers(String name, ObjectFirewallAccessproxy6Apigateway6RealserversArgs args)
public ObjectFirewallAccessproxy6Apigateway6Realservers(String name, ObjectFirewallAccessproxy6Apigateway6RealserversArgs args, CustomResourceOptions options)
type: fortimanager:ObjectFirewallAccessproxy6Apigateway6Realservers
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 ObjectFirewallAccessproxy6Apigateway6RealserversArgs
- 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 ObjectFirewallAccessproxy6Apigateway6RealserversArgs
- 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 ObjectFirewallAccessproxy6Apigateway6RealserversArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ObjectFirewallAccessproxy6Apigateway6RealserversArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ObjectFirewallAccessproxy6Apigateway6RealserversArgs
- 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 objectFirewallAccessproxy6Apigateway6RealserversResource = new Fortimanager.ObjectFirewallAccessproxy6Apigateway6Realservers("objectFirewallAccessproxy6Apigateway6RealserversResource", new()
{
ApiGateway6 = "string",
AccessProxy6 = "string",
Ip = "string",
Weight = 0,
AddrType = "string",
Domain = "string",
ExternalAuth = "string",
Fosid = 0,
HealthCheck = "string",
HealthCheckProto = "string",
HolddownInterval = "string",
ObjectFirewallAccessproxy6Apigateway6RealserversId = "string",
Address = "string",
Adom = "string",
HttpHost = "string",
Port = 0,
Scopetype = "string",
SshClientCert = "string",
SshHostKeyValidation = "string",
SshHostKeys = new[]
{
"string",
},
Status = "string",
TranslateHost = "string",
TunnelEncryption = "string",
Type = "string",
Mappedport = "string",
});
example, err := fortimanager.NewObjectFirewallAccessproxy6Apigateway6Realservers(ctx, "objectFirewallAccessproxy6Apigateway6RealserversResource", &fortimanager.ObjectFirewallAccessproxy6Apigateway6RealserversArgs{
ApiGateway6: pulumi.String("string"),
AccessProxy6: 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"),
ObjectFirewallAccessproxy6Apigateway6RealserversId: 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"),
SshHostKeyValidation: pulumi.String("string"),
SshHostKeys: pulumi.StringArray{
pulumi.String("string"),
},
Status: pulumi.String("string"),
TranslateHost: pulumi.String("string"),
TunnelEncryption: pulumi.String("string"),
Type: pulumi.String("string"),
Mappedport: pulumi.String("string"),
})
var objectFirewallAccessproxy6Apigateway6RealserversResource = new ObjectFirewallAccessproxy6Apigateway6Realservers("objectFirewallAccessproxy6Apigateway6RealserversResource", ObjectFirewallAccessproxy6Apigateway6RealserversArgs.builder()
.apiGateway6("string")
.accessProxy6("string")
.ip("string")
.weight(0)
.addrType("string")
.domain("string")
.externalAuth("string")
.fosid(0)
.healthCheck("string")
.healthCheckProto("string")
.holddownInterval("string")
.objectFirewallAccessproxy6Apigateway6RealserversId("string")
.address("string")
.adom("string")
.httpHost("string")
.port(0)
.scopetype("string")
.sshClientCert("string")
.sshHostKeyValidation("string")
.sshHostKeys("string")
.status("string")
.translateHost("string")
.tunnelEncryption("string")
.type("string")
.mappedport("string")
.build());
object_firewall_accessproxy6_apigateway6_realservers_resource = fortimanager.ObjectFirewallAccessproxy6Apigateway6Realservers("objectFirewallAccessproxy6Apigateway6RealserversResource",
api_gateway6="string",
access_proxy6="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_accessproxy6_apigateway6_realservers_id="string",
address="string",
adom="string",
http_host="string",
port=0,
scopetype="string",
ssh_client_cert="string",
ssh_host_key_validation="string",
ssh_host_keys=["string"],
status="string",
translate_host="string",
tunnel_encryption="string",
type="string",
mappedport="string")
const objectFirewallAccessproxy6Apigateway6RealserversResource = new fortimanager.ObjectFirewallAccessproxy6Apigateway6Realservers("objectFirewallAccessproxy6Apigateway6RealserversResource", {
apiGateway6: "string",
accessProxy6: "string",
ip: "string",
weight: 0,
addrType: "string",
domain: "string",
externalAuth: "string",
fosid: 0,
healthCheck: "string",
healthCheckProto: "string",
holddownInterval: "string",
objectFirewallAccessproxy6Apigateway6RealserversId: "string",
address: "string",
adom: "string",
httpHost: "string",
port: 0,
scopetype: "string",
sshClientCert: "string",
sshHostKeyValidation: "string",
sshHostKeys: ["string"],
status: "string",
translateHost: "string",
tunnelEncryption: "string",
type: "string",
mappedport: "string",
});
type: fortimanager:ObjectFirewallAccessproxy6Apigateway6Realservers
properties:
accessProxy6: string
addrType: string
address: string
adom: string
apiGateway6: string
domain: string
externalAuth: string
fosid: 0
healthCheck: string
healthCheckProto: string
holddownInterval: string
httpHost: string
ip: string
mappedport: string
objectFirewallAccessproxy6Apigateway6RealserversId: string
port: 0
scopetype: string
sshClientCert: string
sshHostKeyValidation: string
sshHostKeys:
- string
status: string
translateHost: string
tunnelEncryption: string
type: string
weight: 0
ObjectFirewallAccessproxy6Apigateway6Realservers 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 ObjectFirewallAccessproxy6Apigateway6Realservers resource accepts the following input properties:
- Access
Proxy6 string - Access Proxy6.
- Api
Gateway6 string - Api Gateway6.
- Addr
Type 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
isadom
, otherwise the value of adom in the provider will be inherited. - Domain string
- Wildcard domain name of the real server.
- External
Auth string - Enable/disable use of external browser as user-agent for SAML user authentication. Valid values:
disable
,enable
. - Fosid double
- Real server ID.
- Health
Check string - Enable to check the responsiveness of the real server before forwarding traffic. Valid values:
disable
,enable
. - Health
Check stringProto - Protocol of the health check monitor to use when polling to determine server's connectivity status. Valid values:
ping
,http
,tcp-connect
. - Holddown
Interval string - 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 string - HTTP server domain name in HTTP header.
- Ip string
- IPv6 address of the real server.
- Mappedport string
- Port for communicating with the real server.
- Object
Firewall stringAccessproxy6Apigateway6Realservers Id - 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
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - Ssh
Client stringCert - Set access-proxy SSH client certificate profile.
- Ssh
Host stringKey Validation - Enable/disable SSH real server host key validation. Valid values:
disable
,enable
. - Ssh
Host List<string>Keys - One or more server host key.
- 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
. - Translate
Host string - Enable/disable translation of hostname/IP from virtual server to real server. Valid values:
disable
,enable
. - Tunnel
Encryption 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.
- Access
Proxy6 string - Access Proxy6.
- Api
Gateway6 string - Api Gateway6.
- Addr
Type 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
isadom
, otherwise the value of adom in the provider will be inherited. - Domain string
- Wildcard domain name of the real server.
- External
Auth string - Enable/disable use of external browser as user-agent for SAML user authentication. Valid values:
disable
,enable
. - Fosid float64
- Real server ID.
- Health
Check string - Enable to check the responsiveness of the real server before forwarding traffic. Valid values:
disable
,enable
. - Health
Check stringProto - Protocol of the health check monitor to use when polling to determine server's connectivity status. Valid values:
ping
,http
,tcp-connect
. - Holddown
Interval string - 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 string - HTTP server domain name in HTTP header.
- Ip string
- IPv6 address of the real server.
- Mappedport string
- Port for communicating with the real server.
- Object
Firewall stringAccessproxy6Apigateway6Realservers Id - 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
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - Ssh
Client stringCert - Set access-proxy SSH client certificate profile.
- Ssh
Host stringKey Validation - Enable/disable SSH real server host key validation. Valid values:
disable
,enable
. - Ssh
Host []stringKeys - One or more server host key.
- 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
. - Translate
Host string - Enable/disable translation of hostname/IP from virtual server to real server. Valid values:
disable
,enable
. - Tunnel
Encryption 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.
- access
Proxy6 String - Access Proxy6.
- api
Gateway6 String - Api Gateway6.
- addr
Type 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
isadom
, otherwise the value of adom in the provider will be inherited. - domain String
- Wildcard domain name of the real server.
- external
Auth String - Enable/disable use of external browser as user-agent for SAML user authentication. Valid values:
disable
,enable
. - fosid Double
- Real server ID.
- health
Check String - Enable to check the responsiveness of the real server before forwarding traffic. Valid values:
disable
,enable
. - health
Check StringProto - Protocol of the health check monitor to use when polling to determine server's connectivity status. Valid values:
ping
,http
,tcp-connect
. - holddown
Interval String - 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 String - HTTP server domain name in HTTP header.
- ip String
- IPv6 address of the real server.
- mappedport String
- Port for communicating with the real server.
- object
Firewall StringAccessproxy6Apigateway6Realservers Id - 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
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - ssh
Client StringCert - Set access-proxy SSH client certificate profile.
- ssh
Host StringKey Validation - Enable/disable SSH real server host key validation. Valid values:
disable
,enable
. - ssh
Host List<String>Keys - One or more server host key.
- 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
. - translate
Host String - Enable/disable translation of hostname/IP from virtual server to real server. Valid values:
disable
,enable
. - tunnel
Encryption 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.
- access
Proxy6 string - Access Proxy6.
- api
Gateway6 string - Api Gateway6.
- addr
Type 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
isadom
, otherwise the value of adom in the provider will be inherited. - domain string
- Wildcard domain name of the real server.
- external
Auth string - Enable/disable use of external browser as user-agent for SAML user authentication. Valid values:
disable
,enable
. - fosid number
- Real server ID.
- health
Check string - Enable to check the responsiveness of the real server before forwarding traffic. Valid values:
disable
,enable
. - health
Check stringProto - Protocol of the health check monitor to use when polling to determine server's connectivity status. Valid values:
ping
,http
,tcp-connect
. - holddown
Interval string - 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 string - HTTP server domain name in HTTP header.
- ip string
- IPv6 address of the real server.
- mappedport string
- Port for communicating with the real server.
- object
Firewall stringAccessproxy6Apigateway6Realservers Id - 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
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - ssh
Client stringCert - Set access-proxy SSH client certificate profile.
- ssh
Host stringKey Validation - Enable/disable SSH real server host key validation. Valid values:
disable
,enable
. - ssh
Host string[]Keys - One or more server host key.
- 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
. - translate
Host string - Enable/disable translation of hostname/IP from virtual server to real server. Valid values:
disable
,enable
. - tunnel
Encryption 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_
proxy6 str - Access Proxy6.
- api_
gateway6 str - Api Gateway6.
- 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
isadom
, 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_ strproto - 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
- IPv6 address of the real server.
- mappedport str
- Port for communicating with the real server.
- object_
firewall_ straccessproxy6_ apigateway6_ realservers_ id - 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
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - ssh_
client_ strcert - Set access-proxy SSH client certificate profile.
- ssh_
host_ strkey_ validation - Enable/disable SSH real server host key validation. Valid values:
disable
,enable
. - ssh_
host_ Sequence[str]keys - One or more server host key.
- 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.
- access
Proxy6 String - Access Proxy6.
- api
Gateway6 String - Api Gateway6.
- addr
Type 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
isadom
, otherwise the value of adom in the provider will be inherited. - domain String
- Wildcard domain name of the real server.
- external
Auth String - Enable/disable use of external browser as user-agent for SAML user authentication. Valid values:
disable
,enable
. - fosid Number
- Real server ID.
- health
Check String - Enable to check the responsiveness of the real server before forwarding traffic. Valid values:
disable
,enable
. - health
Check StringProto - Protocol of the health check monitor to use when polling to determine server's connectivity status. Valid values:
ping
,http
,tcp-connect
. - holddown
Interval String - 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 String - HTTP server domain name in HTTP header.
- ip String
- IPv6 address of the real server.
- mappedport String
- Port for communicating with the real server.
- object
Firewall StringAccessproxy6Apigateway6Realservers Id - 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
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - ssh
Client StringCert - Set access-proxy SSH client certificate profile.
- ssh
Host StringKey Validation - Enable/disable SSH real server host key validation. Valid values:
disable
,enable
. - ssh
Host List<String>Keys - One or more server host key.
- 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
. - translate
Host String - Enable/disable translation of hostname/IP from virtual server to real server. Valid values:
disable
,enable
. - tunnel
Encryption 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 ObjectFirewallAccessproxy6Apigateway6Realservers 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 ObjectFirewallAccessproxy6Apigateway6Realservers Resource
Get an existing ObjectFirewallAccessproxy6Apigateway6Realservers 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?: ObjectFirewallAccessproxy6Apigateway6RealserversState, opts?: CustomResourceOptions): ObjectFirewallAccessproxy6Apigateway6Realservers
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
access_proxy6: Optional[str] = None,
addr_type: Optional[str] = None,
address: Optional[str] = None,
adom: Optional[str] = None,
api_gateway6: 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_accessproxy6_apigateway6_realservers_id: Optional[str] = None,
port: Optional[float] = None,
scopetype: Optional[str] = None,
ssh_client_cert: Optional[str] = None,
ssh_host_key_validation: Optional[str] = None,
ssh_host_keys: Optional[Sequence[str]] = None,
status: Optional[str] = None,
translate_host: Optional[str] = None,
tunnel_encryption: Optional[str] = None,
type: Optional[str] = None,
weight: Optional[float] = None) -> ObjectFirewallAccessproxy6Apigateway6Realservers
func GetObjectFirewallAccessproxy6Apigateway6Realservers(ctx *Context, name string, id IDInput, state *ObjectFirewallAccessproxy6Apigateway6RealserversState, opts ...ResourceOption) (*ObjectFirewallAccessproxy6Apigateway6Realservers, error)
public static ObjectFirewallAccessproxy6Apigateway6Realservers Get(string name, Input<string> id, ObjectFirewallAccessproxy6Apigateway6RealserversState? state, CustomResourceOptions? opts = null)
public static ObjectFirewallAccessproxy6Apigateway6Realservers get(String name, Output<String> id, ObjectFirewallAccessproxy6Apigateway6RealserversState state, CustomResourceOptions options)
resources: _: type: fortimanager:ObjectFirewallAccessproxy6Apigateway6Realservers 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.
- Access
Proxy6 string - Access Proxy6.
- Addr
Type 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
isadom
, otherwise the value of adom in the provider will be inherited. - Api
Gateway6 string - Api Gateway6.
- Domain string
- Wildcard domain name of the real server.
- External
Auth string - Enable/disable use of external browser as user-agent for SAML user authentication. Valid values:
disable
,enable
. - Fosid double
- Real server ID.
- Health
Check string - Enable to check the responsiveness of the real server before forwarding traffic. Valid values:
disable
,enable
. - Health
Check stringProto - Protocol of the health check monitor to use when polling to determine server's connectivity status. Valid values:
ping
,http
,tcp-connect
. - Holddown
Interval string - 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 string - HTTP server domain name in HTTP header.
- Ip string
- IPv6 address of the real server.
- Mappedport string
- Port for communicating with the real server.
- Object
Firewall stringAccessproxy6Apigateway6Realservers Id - 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
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - Ssh
Client stringCert - Set access-proxy SSH client certificate profile.
- Ssh
Host stringKey Validation - Enable/disable SSH real server host key validation. Valid values:
disable
,enable
. - Ssh
Host List<string>Keys - One or more server host key.
- 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
. - Translate
Host string - Enable/disable translation of hostname/IP from virtual server to real server. Valid values:
disable
,enable
. - Tunnel
Encryption 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.
- Access
Proxy6 string - Access Proxy6.
- Addr
Type 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
isadom
, otherwise the value of adom in the provider will be inherited. - Api
Gateway6 string - Api Gateway6.
- Domain string
- Wildcard domain name of the real server.
- External
Auth string - Enable/disable use of external browser as user-agent for SAML user authentication. Valid values:
disable
,enable
. - Fosid float64
- Real server ID.
- Health
Check string - Enable to check the responsiveness of the real server before forwarding traffic. Valid values:
disable
,enable
. - Health
Check stringProto - Protocol of the health check monitor to use when polling to determine server's connectivity status. Valid values:
ping
,http
,tcp-connect
. - Holddown
Interval string - 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 string - HTTP server domain name in HTTP header.
- Ip string
- IPv6 address of the real server.
- Mappedport string
- Port for communicating with the real server.
- Object
Firewall stringAccessproxy6Apigateway6Realservers Id - 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
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - Ssh
Client stringCert - Set access-proxy SSH client certificate profile.
- Ssh
Host stringKey Validation - Enable/disable SSH real server host key validation. Valid values:
disable
,enable
. - Ssh
Host []stringKeys - One or more server host key.
- 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
. - Translate
Host string - Enable/disable translation of hostname/IP from virtual server to real server. Valid values:
disable
,enable
. - Tunnel
Encryption 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.
- access
Proxy6 String - Access Proxy6.
- addr
Type 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
isadom
, otherwise the value of adom in the provider will be inherited. - api
Gateway6 String - Api Gateway6.
- domain String
- Wildcard domain name of the real server.
- external
Auth String - Enable/disable use of external browser as user-agent for SAML user authentication. Valid values:
disable
,enable
. - fosid Double
- Real server ID.
- health
Check String - Enable to check the responsiveness of the real server before forwarding traffic. Valid values:
disable
,enable
. - health
Check StringProto - Protocol of the health check monitor to use when polling to determine server's connectivity status. Valid values:
ping
,http
,tcp-connect
. - holddown
Interval String - 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 String - HTTP server domain name in HTTP header.
- ip String
- IPv6 address of the real server.
- mappedport String
- Port for communicating with the real server.
- object
Firewall StringAccessproxy6Apigateway6Realservers Id - 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
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - ssh
Client StringCert - Set access-proxy SSH client certificate profile.
- ssh
Host StringKey Validation - Enable/disable SSH real server host key validation. Valid values:
disable
,enable
. - ssh
Host List<String>Keys - One or more server host key.
- 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
. - translate
Host String - Enable/disable translation of hostname/IP from virtual server to real server. Valid values:
disable
,enable
. - tunnel
Encryption 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.
- access
Proxy6 string - Access Proxy6.
- addr
Type 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
isadom
, otherwise the value of adom in the provider will be inherited. - api
Gateway6 string - Api Gateway6.
- domain string
- Wildcard domain name of the real server.
- external
Auth string - Enable/disable use of external browser as user-agent for SAML user authentication. Valid values:
disable
,enable
. - fosid number
- Real server ID.
- health
Check string - Enable to check the responsiveness of the real server before forwarding traffic. Valid values:
disable
,enable
. - health
Check stringProto - Protocol of the health check monitor to use when polling to determine server's connectivity status. Valid values:
ping
,http
,tcp-connect
. - holddown
Interval string - 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 string - HTTP server domain name in HTTP header.
- ip string
- IPv6 address of the real server.
- mappedport string
- Port for communicating with the real server.
- object
Firewall stringAccessproxy6Apigateway6Realservers Id - 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
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - ssh
Client stringCert - Set access-proxy SSH client certificate profile.
- ssh
Host stringKey Validation - Enable/disable SSH real server host key validation. Valid values:
disable
,enable
. - ssh
Host string[]Keys - One or more server host key.
- 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
. - translate
Host string - Enable/disable translation of hostname/IP from virtual server to real server. Valid values:
disable
,enable
. - tunnel
Encryption 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_
proxy6 str - Access Proxy6.
- 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
isadom
, otherwise the value of adom in the provider will be inherited. - api_
gateway6 str - Api Gateway6.
- 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_ strproto - 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
- IPv6 address of the real server.
- mappedport str
- Port for communicating with the real server.
- object_
firewall_ straccessproxy6_ apigateway6_ realservers_ id - 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
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - ssh_
client_ strcert - Set access-proxy SSH client certificate profile.
- ssh_
host_ strkey_ validation - Enable/disable SSH real server host key validation. Valid values:
disable
,enable
. - ssh_
host_ Sequence[str]keys - One or more server host key.
- 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.
- access
Proxy6 String - Access Proxy6.
- addr
Type 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
isadom
, otherwise the value of adom in the provider will be inherited. - api
Gateway6 String - Api Gateway6.
- domain String
- Wildcard domain name of the real server.
- external
Auth String - Enable/disable use of external browser as user-agent for SAML user authentication. Valid values:
disable
,enable
. - fosid Number
- Real server ID.
- health
Check String - Enable to check the responsiveness of the real server before forwarding traffic. Valid values:
disable
,enable
. - health
Check StringProto - Protocol of the health check monitor to use when polling to determine server's connectivity status. Valid values:
ping
,http
,tcp-connect
. - holddown
Interval String - 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 String - HTTP server domain name in HTTP header.
- ip String
- IPv6 address of the real server.
- mappedport String
- Port for communicating with the real server.
- object
Firewall StringAccessproxy6Apigateway6Realservers Id - 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
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - ssh
Client StringCert - Set access-proxy SSH client certificate profile.
- ssh
Host StringKey Validation - Enable/disable SSH real server host key validation. Valid values:
disable
,enable
. - ssh
Host List<String>Keys - One or more server host key.
- 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
. - translate
Host String - Enable/disable translation of hostname/IP from virtual server to real server. Valid values:
disable
,enable
. - tunnel
Encryption 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 AccessProxy6ApiGateway6Realservers can be imported using any of these accepted formats:
Set import_options = [“access_proxy6=YOUR_VALUE”, “api_gateway6=YOUR_VALUE”] in the provider section.
$ export “FORTIMANAGER_IMPORT_TABLE”=“true”
$ pulumi import fortimanager:index/objectFirewallAccessproxy6Apigateway6Realservers:ObjectFirewallAccessproxy6Apigateway6Realservers 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.