fortimanager.ObjectWebproxyForwardserver
Explore with Pulumi AI
Configure forward-server addresses.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as fortimanager from "@pulumi/fortimanager";
const trname = new fortimanager.ObjectWebproxyForwardserver("trname", {
addrType: "ip",
comment: "This is a Terraform example",
healthcheck: "disable",
ip: "192.168.1.1",
monitor: "http://www.google.com",
passwords: ["fortinet"],
port: 3128,
serverDownOption: "block",
username: "admin",
});
import pulumi
import pulumi_fortimanager as fortimanager
trname = fortimanager.ObjectWebproxyForwardserver("trname",
addr_type="ip",
comment="This is a Terraform example",
healthcheck="disable",
ip="192.168.1.1",
monitor="http://www.google.com",
passwords=["fortinet"],
port=3128,
server_down_option="block",
username="admin")
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 {
_, err := fortimanager.NewObjectWebproxyForwardserver(ctx, "trname", &fortimanager.ObjectWebproxyForwardserverArgs{
AddrType: pulumi.String("ip"),
Comment: pulumi.String("This is a Terraform example"),
Healthcheck: pulumi.String("disable"),
Ip: pulumi.String("192.168.1.1"),
Monitor: pulumi.String("http://www.google.com"),
Passwords: pulumi.StringArray{
pulumi.String("fortinet"),
},
Port: pulumi.Float64(3128),
ServerDownOption: pulumi.String("block"),
Username: pulumi.String("admin"),
})
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 trname = new Fortimanager.ObjectWebproxyForwardserver("trname", new()
{
AddrType = "ip",
Comment = "This is a Terraform example",
Healthcheck = "disable",
Ip = "192.168.1.1",
Monitor = "http://www.google.com",
Passwords = new[]
{
"fortinet",
},
Port = 3128,
ServerDownOption = "block",
Username = "admin",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.fortimanager.ObjectWebproxyForwardserver;
import com.pulumi.fortimanager.ObjectWebproxyForwardserverArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var trname = new ObjectWebproxyForwardserver("trname", ObjectWebproxyForwardserverArgs.builder()
.addrType("ip")
.comment("This is a Terraform example")
.healthcheck("disable")
.ip("192.168.1.1")
.monitor("http://www.google.com")
.passwords("fortinet")
.port(3128)
.serverDownOption("block")
.username("admin")
.build());
}
}
resources:
trname:
type: fortimanager:ObjectWebproxyForwardserver
properties:
addrType: ip
comment: This is a Terraform example
healthcheck: disable
ip: 192.168.1.1
monitor: http://www.google.com
passwords:
- fortinet
port: 3128
serverDownOption: block
username: admin
Create ObjectWebproxyForwardserver Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new ObjectWebproxyForwardserver(name: string, args?: ObjectWebproxyForwardserverArgs, opts?: CustomResourceOptions);
@overload
def ObjectWebproxyForwardserver(resource_name: str,
args: Optional[ObjectWebproxyForwardserverArgs] = None,
opts: Optional[ResourceOptions] = None)
@overload
def ObjectWebproxyForwardserver(resource_name: str,
opts: Optional[ResourceOptions] = None,
addr_type: Optional[str] = None,
adom: Optional[str] = None,
comment: Optional[str] = None,
fqdn: Optional[str] = None,
healthcheck: Optional[str] = None,
ip: Optional[str] = None,
ipv6: Optional[str] = None,
masquerade: Optional[str] = None,
monitor: Optional[str] = None,
name: Optional[str] = None,
object_webproxy_forwardserver_id: Optional[str] = None,
passwords: Optional[Sequence[str]] = None,
port: Optional[float] = None,
scopetype: Optional[str] = None,
server_down_option: Optional[str] = None,
username: Optional[str] = None)
func NewObjectWebproxyForwardserver(ctx *Context, name string, args *ObjectWebproxyForwardserverArgs, opts ...ResourceOption) (*ObjectWebproxyForwardserver, error)
public ObjectWebproxyForwardserver(string name, ObjectWebproxyForwardserverArgs? args = null, CustomResourceOptions? opts = null)
public ObjectWebproxyForwardserver(String name, ObjectWebproxyForwardserverArgs args)
public ObjectWebproxyForwardserver(String name, ObjectWebproxyForwardserverArgs args, CustomResourceOptions options)
type: fortimanager:ObjectWebproxyForwardserver
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 ObjectWebproxyForwardserverArgs
- 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 ObjectWebproxyForwardserverArgs
- 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 ObjectWebproxyForwardserverArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ObjectWebproxyForwardserverArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ObjectWebproxyForwardserverArgs
- 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 objectWebproxyForwardserverResource = new Fortimanager.ObjectWebproxyForwardserver("objectWebproxyForwardserverResource", new()
{
AddrType = "string",
Adom = "string",
Comment = "string",
Fqdn = "string",
Healthcheck = "string",
Ip = "string",
Ipv6 = "string",
Masquerade = "string",
Monitor = "string",
Name = "string",
ObjectWebproxyForwardserverId = "string",
Passwords = new[]
{
"string",
},
Port = 0,
Scopetype = "string",
ServerDownOption = "string",
Username = "string",
});
example, err := fortimanager.NewObjectWebproxyForwardserver(ctx, "objectWebproxyForwardserverResource", &fortimanager.ObjectWebproxyForwardserverArgs{
AddrType: pulumi.String("string"),
Adom: pulumi.String("string"),
Comment: pulumi.String("string"),
Fqdn: pulumi.String("string"),
Healthcheck: pulumi.String("string"),
Ip: pulumi.String("string"),
Ipv6: pulumi.String("string"),
Masquerade: pulumi.String("string"),
Monitor: pulumi.String("string"),
Name: pulumi.String("string"),
ObjectWebproxyForwardserverId: pulumi.String("string"),
Passwords: pulumi.StringArray{
pulumi.String("string"),
},
Port: pulumi.Float64(0),
Scopetype: pulumi.String("string"),
ServerDownOption: pulumi.String("string"),
Username: pulumi.String("string"),
})
var objectWebproxyForwardserverResource = new ObjectWebproxyForwardserver("objectWebproxyForwardserverResource", ObjectWebproxyForwardserverArgs.builder()
.addrType("string")
.adom("string")
.comment("string")
.fqdn("string")
.healthcheck("string")
.ip("string")
.ipv6("string")
.masquerade("string")
.monitor("string")
.name("string")
.objectWebproxyForwardserverId("string")
.passwords("string")
.port(0)
.scopetype("string")
.serverDownOption("string")
.username("string")
.build());
object_webproxy_forwardserver_resource = fortimanager.ObjectWebproxyForwardserver("objectWebproxyForwardserverResource",
addr_type="string",
adom="string",
comment="string",
fqdn="string",
healthcheck="string",
ip="string",
ipv6="string",
masquerade="string",
monitor="string",
name="string",
object_webproxy_forwardserver_id="string",
passwords=["string"],
port=0,
scopetype="string",
server_down_option="string",
username="string")
const objectWebproxyForwardserverResource = new fortimanager.ObjectWebproxyForwardserver("objectWebproxyForwardserverResource", {
addrType: "string",
adom: "string",
comment: "string",
fqdn: "string",
healthcheck: "string",
ip: "string",
ipv6: "string",
masquerade: "string",
monitor: "string",
name: "string",
objectWebproxyForwardserverId: "string",
passwords: ["string"],
port: 0,
scopetype: "string",
serverDownOption: "string",
username: "string",
});
type: fortimanager:ObjectWebproxyForwardserver
properties:
addrType: string
adom: string
comment: string
fqdn: string
healthcheck: string
ip: string
ipv6: string
masquerade: string
monitor: string
name: string
objectWebproxyForwardserverId: string
passwords:
- string
port: 0
scopetype: string
serverDownOption: string
username: string
ObjectWebproxyForwardserver 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 ObjectWebproxyForwardserver resource accepts the following input properties:
- Addr
Type string - Address type of the forwarding proxy server: IP or FQDN. Valid values:
fqdn
,ip
. - Adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - Comment string
- Comment.
- Fqdn string
- Forward server Fully Qualified Domain Name (FQDN).
- Healthcheck string
- Enable/disable forward server health checking. Attempts to connect through the remote forwarding server to a destination to verify that the forwarding server is operating normally. Valid values:
disable
,enable
. - Ip string
- Forward proxy server IP address.
- Ipv6 string
- Forward proxy server IPv6 address.
- Masquerade string
- Enable/disable use of the of the IP address of the outgoing interface as the client IP address (default = enable) Valid values:
disable
,enable
. - Monitor string
- URL for forward server health check monitoring (default = http://www.google.com).
- Name string
- Server name.
- Object
Webproxy stringForwardserver Id - an identifier for the resource with format {{name}}.
- Passwords List<string>
- HTTP authentication password.
- Port double
- Port number that the forwarding server expects to receive HTTP sessions on (1 - 65535, default = 3128).
- 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
. - Server
Down stringOption - Action to take when the forward server is found to be down: block sessions until the server is back up or pass sessions to their destination. Valid values:
block
,pass
. - Username string
- HTTP authentication user name.
- Addr
Type string - Address type of the forwarding proxy server: IP or FQDN. Valid values:
fqdn
,ip
. - Adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - Comment string
- Comment.
- Fqdn string
- Forward server Fully Qualified Domain Name (FQDN).
- Healthcheck string
- Enable/disable forward server health checking. Attempts to connect through the remote forwarding server to a destination to verify that the forwarding server is operating normally. Valid values:
disable
,enable
. - Ip string
- Forward proxy server IP address.
- Ipv6 string
- Forward proxy server IPv6 address.
- Masquerade string
- Enable/disable use of the of the IP address of the outgoing interface as the client IP address (default = enable) Valid values:
disable
,enable
. - Monitor string
- URL for forward server health check monitoring (default = http://www.google.com).
- Name string
- Server name.
- Object
Webproxy stringForwardserver Id - an identifier for the resource with format {{name}}.
- Passwords []string
- HTTP authentication password.
- Port float64
- Port number that the forwarding server expects to receive HTTP sessions on (1 - 65535, default = 3128).
- 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
. - Server
Down stringOption - Action to take when the forward server is found to be down: block sessions until the server is back up or pass sessions to their destination. Valid values:
block
,pass
. - Username string
- HTTP authentication user name.
- addr
Type String - Address type of the forwarding proxy server: IP or FQDN. Valid values:
fqdn
,ip
. - adom String
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - comment String
- Comment.
- fqdn String
- Forward server Fully Qualified Domain Name (FQDN).
- healthcheck String
- Enable/disable forward server health checking. Attempts to connect through the remote forwarding server to a destination to verify that the forwarding server is operating normally. Valid values:
disable
,enable
. - ip String
- Forward proxy server IP address.
- ipv6 String
- Forward proxy server IPv6 address.
- masquerade String
- Enable/disable use of the of the IP address of the outgoing interface as the client IP address (default = enable) Valid values:
disable
,enable
. - monitor String
- URL for forward server health check monitoring (default = http://www.google.com).
- name String
- Server name.
- object
Webproxy StringForwardserver Id - an identifier for the resource with format {{name}}.
- passwords List<String>
- HTTP authentication password.
- port Double
- Port number that the forwarding server expects to receive HTTP sessions on (1 - 65535, default = 3128).
- 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
. - server
Down StringOption - Action to take when the forward server is found to be down: block sessions until the server is back up or pass sessions to their destination. Valid values:
block
,pass
. - username String
- HTTP authentication user name.
- addr
Type string - Address type of the forwarding proxy server: IP or FQDN. Valid values:
fqdn
,ip
. - adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - comment string
- Comment.
- fqdn string
- Forward server Fully Qualified Domain Name (FQDN).
- healthcheck string
- Enable/disable forward server health checking. Attempts to connect through the remote forwarding server to a destination to verify that the forwarding server is operating normally. Valid values:
disable
,enable
. - ip string
- Forward proxy server IP address.
- ipv6 string
- Forward proxy server IPv6 address.
- masquerade string
- Enable/disable use of the of the IP address of the outgoing interface as the client IP address (default = enable) Valid values:
disable
,enable
. - monitor string
- URL for forward server health check monitoring (default = http://www.google.com).
- name string
- Server name.
- object
Webproxy stringForwardserver Id - an identifier for the resource with format {{name}}.
- passwords string[]
- HTTP authentication password.
- port number
- Port number that the forwarding server expects to receive HTTP sessions on (1 - 65535, default = 3128).
- 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
. - server
Down stringOption - Action to take when the forward server is found to be down: block sessions until the server is back up or pass sessions to their destination. Valid values:
block
,pass
. - username string
- HTTP authentication user name.
- addr_
type str - Address type of the forwarding proxy server: IP or FQDN. Valid values:
fqdn
,ip
. - adom str
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - comment str
- Comment.
- fqdn str
- Forward server Fully Qualified Domain Name (FQDN).
- healthcheck str
- Enable/disable forward server health checking. Attempts to connect through the remote forwarding server to a destination to verify that the forwarding server is operating normally. Valid values:
disable
,enable
. - ip str
- Forward proxy server IP address.
- ipv6 str
- Forward proxy server IPv6 address.
- masquerade str
- Enable/disable use of the of the IP address of the outgoing interface as the client IP address (default = enable) Valid values:
disable
,enable
. - monitor str
- URL for forward server health check monitoring (default = http://www.google.com).
- name str
- Server name.
- object_
webproxy_ strforwardserver_ id - an identifier for the resource with format {{name}}.
- passwords Sequence[str]
- HTTP authentication password.
- port float
- Port number that the forwarding server expects to receive HTTP sessions on (1 - 65535, default = 3128).
- 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
. - server_
down_ stroption - Action to take when the forward server is found to be down: block sessions until the server is back up or pass sessions to their destination. Valid values:
block
,pass
. - username str
- HTTP authentication user name.
- addr
Type String - Address type of the forwarding proxy server: IP or FQDN. Valid values:
fqdn
,ip
. - adom String
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - comment String
- Comment.
- fqdn String
- Forward server Fully Qualified Domain Name (FQDN).
- healthcheck String
- Enable/disable forward server health checking. Attempts to connect through the remote forwarding server to a destination to verify that the forwarding server is operating normally. Valid values:
disable
,enable
. - ip String
- Forward proxy server IP address.
- ipv6 String
- Forward proxy server IPv6 address.
- masquerade String
- Enable/disable use of the of the IP address of the outgoing interface as the client IP address (default = enable) Valid values:
disable
,enable
. - monitor String
- URL for forward server health check monitoring (default = http://www.google.com).
- name String
- Server name.
- object
Webproxy StringForwardserver Id - an identifier for the resource with format {{name}}.
- passwords List<String>
- HTTP authentication password.
- port Number
- Port number that the forwarding server expects to receive HTTP sessions on (1 - 65535, default = 3128).
- 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
. - server
Down StringOption - Action to take when the forward server is found to be down: block sessions until the server is back up or pass sessions to their destination. Valid values:
block
,pass
. - username String
- HTTP authentication user name.
Outputs
All input properties are implicitly available as output properties. Additionally, the ObjectWebproxyForwardserver 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 ObjectWebproxyForwardserver Resource
Get an existing ObjectWebproxyForwardserver 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?: ObjectWebproxyForwardserverState, opts?: CustomResourceOptions): ObjectWebproxyForwardserver
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
addr_type: Optional[str] = None,
adom: Optional[str] = None,
comment: Optional[str] = None,
fqdn: Optional[str] = None,
healthcheck: Optional[str] = None,
ip: Optional[str] = None,
ipv6: Optional[str] = None,
masquerade: Optional[str] = None,
monitor: Optional[str] = None,
name: Optional[str] = None,
object_webproxy_forwardserver_id: Optional[str] = None,
passwords: Optional[Sequence[str]] = None,
port: Optional[float] = None,
scopetype: Optional[str] = None,
server_down_option: Optional[str] = None,
username: Optional[str] = None) -> ObjectWebproxyForwardserver
func GetObjectWebproxyForwardserver(ctx *Context, name string, id IDInput, state *ObjectWebproxyForwardserverState, opts ...ResourceOption) (*ObjectWebproxyForwardserver, error)
public static ObjectWebproxyForwardserver Get(string name, Input<string> id, ObjectWebproxyForwardserverState? state, CustomResourceOptions? opts = null)
public static ObjectWebproxyForwardserver get(String name, Output<String> id, ObjectWebproxyForwardserverState state, CustomResourceOptions options)
resources: _: type: fortimanager:ObjectWebproxyForwardserver 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.
- Addr
Type string - Address type of the forwarding proxy server: IP or FQDN. Valid values:
fqdn
,ip
. - Adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - Comment string
- Comment.
- Fqdn string
- Forward server Fully Qualified Domain Name (FQDN).
- Healthcheck string
- Enable/disable forward server health checking. Attempts to connect through the remote forwarding server to a destination to verify that the forwarding server is operating normally. Valid values:
disable
,enable
. - Ip string
- Forward proxy server IP address.
- Ipv6 string
- Forward proxy server IPv6 address.
- Masquerade string
- Enable/disable use of the of the IP address of the outgoing interface as the client IP address (default = enable) Valid values:
disable
,enable
. - Monitor string
- URL for forward server health check monitoring (default = http://www.google.com).
- Name string
- Server name.
- Object
Webproxy stringForwardserver Id - an identifier for the resource with format {{name}}.
- Passwords List<string>
- HTTP authentication password.
- Port double
- Port number that the forwarding server expects to receive HTTP sessions on (1 - 65535, default = 3128).
- 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
. - Server
Down stringOption - Action to take when the forward server is found to be down: block sessions until the server is back up or pass sessions to their destination. Valid values:
block
,pass
. - Username string
- HTTP authentication user name.
- Addr
Type string - Address type of the forwarding proxy server: IP or FQDN. Valid values:
fqdn
,ip
. - Adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - Comment string
- Comment.
- Fqdn string
- Forward server Fully Qualified Domain Name (FQDN).
- Healthcheck string
- Enable/disable forward server health checking. Attempts to connect through the remote forwarding server to a destination to verify that the forwarding server is operating normally. Valid values:
disable
,enable
. - Ip string
- Forward proxy server IP address.
- Ipv6 string
- Forward proxy server IPv6 address.
- Masquerade string
- Enable/disable use of the of the IP address of the outgoing interface as the client IP address (default = enable) Valid values:
disable
,enable
. - Monitor string
- URL for forward server health check monitoring (default = http://www.google.com).
- Name string
- Server name.
- Object
Webproxy stringForwardserver Id - an identifier for the resource with format {{name}}.
- Passwords []string
- HTTP authentication password.
- Port float64
- Port number that the forwarding server expects to receive HTTP sessions on (1 - 65535, default = 3128).
- 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
. - Server
Down stringOption - Action to take when the forward server is found to be down: block sessions until the server is back up or pass sessions to their destination. Valid values:
block
,pass
. - Username string
- HTTP authentication user name.
- addr
Type String - Address type of the forwarding proxy server: IP or FQDN. Valid values:
fqdn
,ip
. - adom String
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - comment String
- Comment.
- fqdn String
- Forward server Fully Qualified Domain Name (FQDN).
- healthcheck String
- Enable/disable forward server health checking. Attempts to connect through the remote forwarding server to a destination to verify that the forwarding server is operating normally. Valid values:
disable
,enable
. - ip String
- Forward proxy server IP address.
- ipv6 String
- Forward proxy server IPv6 address.
- masquerade String
- Enable/disable use of the of the IP address of the outgoing interface as the client IP address (default = enable) Valid values:
disable
,enable
. - monitor String
- URL for forward server health check monitoring (default = http://www.google.com).
- name String
- Server name.
- object
Webproxy StringForwardserver Id - an identifier for the resource with format {{name}}.
- passwords List<String>
- HTTP authentication password.
- port Double
- Port number that the forwarding server expects to receive HTTP sessions on (1 - 65535, default = 3128).
- 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
. - server
Down StringOption - Action to take when the forward server is found to be down: block sessions until the server is back up or pass sessions to their destination. Valid values:
block
,pass
. - username String
- HTTP authentication user name.
- addr
Type string - Address type of the forwarding proxy server: IP or FQDN. Valid values:
fqdn
,ip
. - adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - comment string
- Comment.
- fqdn string
- Forward server Fully Qualified Domain Name (FQDN).
- healthcheck string
- Enable/disable forward server health checking. Attempts to connect through the remote forwarding server to a destination to verify that the forwarding server is operating normally. Valid values:
disable
,enable
. - ip string
- Forward proxy server IP address.
- ipv6 string
- Forward proxy server IPv6 address.
- masquerade string
- Enable/disable use of the of the IP address of the outgoing interface as the client IP address (default = enable) Valid values:
disable
,enable
. - monitor string
- URL for forward server health check monitoring (default = http://www.google.com).
- name string
- Server name.
- object
Webproxy stringForwardserver Id - an identifier for the resource with format {{name}}.
- passwords string[]
- HTTP authentication password.
- port number
- Port number that the forwarding server expects to receive HTTP sessions on (1 - 65535, default = 3128).
- 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
. - server
Down stringOption - Action to take when the forward server is found to be down: block sessions until the server is back up or pass sessions to their destination. Valid values:
block
,pass
. - username string
- HTTP authentication user name.
- addr_
type str - Address type of the forwarding proxy server: IP or FQDN. Valid values:
fqdn
,ip
. - adom str
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - comment str
- Comment.
- fqdn str
- Forward server Fully Qualified Domain Name (FQDN).
- healthcheck str
- Enable/disable forward server health checking. Attempts to connect through the remote forwarding server to a destination to verify that the forwarding server is operating normally. Valid values:
disable
,enable
. - ip str
- Forward proxy server IP address.
- ipv6 str
- Forward proxy server IPv6 address.
- masquerade str
- Enable/disable use of the of the IP address of the outgoing interface as the client IP address (default = enable) Valid values:
disable
,enable
. - monitor str
- URL for forward server health check monitoring (default = http://www.google.com).
- name str
- Server name.
- object_
webproxy_ strforwardserver_ id - an identifier for the resource with format {{name}}.
- passwords Sequence[str]
- HTTP authentication password.
- port float
- Port number that the forwarding server expects to receive HTTP sessions on (1 - 65535, default = 3128).
- 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
. - server_
down_ stroption - Action to take when the forward server is found to be down: block sessions until the server is back up or pass sessions to their destination. Valid values:
block
,pass
. - username str
- HTTP authentication user name.
- addr
Type String - Address type of the forwarding proxy server: IP or FQDN. Valid values:
fqdn
,ip
. - adom String
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - comment String
- Comment.
- fqdn String
- Forward server Fully Qualified Domain Name (FQDN).
- healthcheck String
- Enable/disable forward server health checking. Attempts to connect through the remote forwarding server to a destination to verify that the forwarding server is operating normally. Valid values:
disable
,enable
. - ip String
- Forward proxy server IP address.
- ipv6 String
- Forward proxy server IPv6 address.
- masquerade String
- Enable/disable use of the of the IP address of the outgoing interface as the client IP address (default = enable) Valid values:
disable
,enable
. - monitor String
- URL for forward server health check monitoring (default = http://www.google.com).
- name String
- Server name.
- object
Webproxy StringForwardserver Id - an identifier for the resource with format {{name}}.
- passwords List<String>
- HTTP authentication password.
- port Number
- Port number that the forwarding server expects to receive HTTP sessions on (1 - 65535, default = 3128).
- 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
. - server
Down StringOption - Action to take when the forward server is found to be down: block sessions until the server is back up or pass sessions to their destination. Valid values:
block
,pass
. - username String
- HTTP authentication user name.
Import
ObjectWebProxy ForwardServer can be imported using any of these accepted formats:
$ export “FORTIMANAGER_IMPORT_TABLE”=“true”
$ pulumi import fortimanager:index/objectWebproxyForwardserver:ObjectWebproxyForwardserver labelname {{name}}
$ 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.