fortimanager.SystemConnector
Explore with Pulumi AI
Configure connector.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as fortimanager from "@pulumi/fortimanager";
const trname = new fortimanager.SystemConnector("trname", {
fssoRefreshInterval: 70,
fssoSessTimeout: 70,
pxRefreshInterval: 70,
pxSvrTimeout: 70,
});
import pulumi
import pulumi_fortimanager as fortimanager
trname = fortimanager.SystemConnector("trname",
fsso_refresh_interval=70,
fsso_sess_timeout=70,
px_refresh_interval=70,
px_svr_timeout=70)
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.NewSystemConnector(ctx, "trname", &fortimanager.SystemConnectorArgs{
FssoRefreshInterval: pulumi.Float64(70),
FssoSessTimeout: pulumi.Float64(70),
PxRefreshInterval: pulumi.Float64(70),
PxSvrTimeout: pulumi.Float64(70),
})
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.SystemConnector("trname", new()
{
FssoRefreshInterval = 70,
FssoSessTimeout = 70,
PxRefreshInterval = 70,
PxSvrTimeout = 70,
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.fortimanager.SystemConnector;
import com.pulumi.fortimanager.SystemConnectorArgs;
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 SystemConnector("trname", SystemConnectorArgs.builder()
.fssoRefreshInterval("70")
.fssoSessTimeout("70")
.pxRefreshInterval("70")
.pxSvrTimeout("70")
.build());
}
}
resources:
trname:
type: fortimanager:SystemConnector
properties:
fssoRefreshInterval: '70'
fssoSessTimeout: '70'
pxRefreshInterval: '70'
pxSvrTimeout: '70'
Create SystemConnector Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new SystemConnector(name: string, args?: SystemConnectorArgs, opts?: CustomResourceOptions);
@overload
def SystemConnector(resource_name: str,
args: Optional[SystemConnectorArgs] = None,
opts: Optional[ResourceOptions] = None)
@overload
def SystemConnector(resource_name: str,
opts: Optional[ResourceOptions] = None,
cloud_orchest_refresh_interval: Optional[float] = None,
conn_refresh_interval: Optional[float] = None,
conn_ssl_protocol: Optional[str] = None,
faznotify_msg_queue_max: Optional[float] = None,
faznotify_msg_timeout: Optional[float] = None,
fsso_refresh_interval: Optional[float] = None,
fsso_sess_timeout: Optional[float] = None,
px_refresh_interval: Optional[float] = None,
px_svr_timeout: Optional[float] = None,
system_connector_id: Optional[str] = None)
func NewSystemConnector(ctx *Context, name string, args *SystemConnectorArgs, opts ...ResourceOption) (*SystemConnector, error)
public SystemConnector(string name, SystemConnectorArgs? args = null, CustomResourceOptions? opts = null)
public SystemConnector(String name, SystemConnectorArgs args)
public SystemConnector(String name, SystemConnectorArgs args, CustomResourceOptions options)
type: fortimanager:SystemConnector
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 SystemConnectorArgs
- 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 SystemConnectorArgs
- 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 SystemConnectorArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args SystemConnectorArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args SystemConnectorArgs
- 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 systemConnectorResource = new Fortimanager.SystemConnector("systemConnectorResource", new()
{
CloudOrchestRefreshInterval = 0,
ConnRefreshInterval = 0,
ConnSslProtocol = "string",
FaznotifyMsgQueueMax = 0,
FaznotifyMsgTimeout = 0,
FssoRefreshInterval = 0,
FssoSessTimeout = 0,
PxRefreshInterval = 0,
PxSvrTimeout = 0,
SystemConnectorId = "string",
});
example, err := fortimanager.NewSystemConnector(ctx, "systemConnectorResource", &fortimanager.SystemConnectorArgs{
CloudOrchestRefreshInterval: pulumi.Float64(0),
ConnRefreshInterval: pulumi.Float64(0),
ConnSslProtocol: pulumi.String("string"),
FaznotifyMsgQueueMax: pulumi.Float64(0),
FaznotifyMsgTimeout: pulumi.Float64(0),
FssoRefreshInterval: pulumi.Float64(0),
FssoSessTimeout: pulumi.Float64(0),
PxRefreshInterval: pulumi.Float64(0),
PxSvrTimeout: pulumi.Float64(0),
SystemConnectorId: pulumi.String("string"),
})
var systemConnectorResource = new SystemConnector("systemConnectorResource", SystemConnectorArgs.builder()
.cloudOrchestRefreshInterval(0)
.connRefreshInterval(0)
.connSslProtocol("string")
.faznotifyMsgQueueMax(0)
.faznotifyMsgTimeout(0)
.fssoRefreshInterval(0)
.fssoSessTimeout(0)
.pxRefreshInterval(0)
.pxSvrTimeout(0)
.systemConnectorId("string")
.build());
system_connector_resource = fortimanager.SystemConnector("systemConnectorResource",
cloud_orchest_refresh_interval=0,
conn_refresh_interval=0,
conn_ssl_protocol="string",
faznotify_msg_queue_max=0,
faznotify_msg_timeout=0,
fsso_refresh_interval=0,
fsso_sess_timeout=0,
px_refresh_interval=0,
px_svr_timeout=0,
system_connector_id="string")
const systemConnectorResource = new fortimanager.SystemConnector("systemConnectorResource", {
cloudOrchestRefreshInterval: 0,
connRefreshInterval: 0,
connSslProtocol: "string",
faznotifyMsgQueueMax: 0,
faznotifyMsgTimeout: 0,
fssoRefreshInterval: 0,
fssoSessTimeout: 0,
pxRefreshInterval: 0,
pxSvrTimeout: 0,
systemConnectorId: "string",
});
type: fortimanager:SystemConnector
properties:
cloudOrchestRefreshInterval: 0
connRefreshInterval: 0
connSslProtocol: string
faznotifyMsgQueueMax: 0
faznotifyMsgTimeout: 0
fssoRefreshInterval: 0
fssoSessTimeout: 0
pxRefreshInterval: 0
pxSvrTimeout: 0
systemConnectorId: string
SystemConnector 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 SystemConnector resource accepts the following input properties:
- Cloud
Orchest doubleRefresh Interval - Cloud Orchestration refresh interval (300 - 1800 seconds).
- Conn
Refresh doubleInterval - connector refresh interval (60 - 1800 seconds).
- Conn
Ssl stringProtocol - set the lowest SSL protocol version for connector. follow-global-ssl-protocol - Follow system.global.global-ssl-protocol setting (default). sslv3 - set SSLv3 as the lowest version. tlsv1.0 - set TLSv1.0 as the lowest version. tlsv1.1 - set TLSv1.1 as the lowest version. tlsv1.2 - set TLSv1.2 as the lowest version. tlsv1.3 - set TLSv1.3 as the lowest version. Valid values:
follow-global-ssl-protocol
,sslv3
,tlsv1.0
,tlsv1.1
,tlsv1.2
,tlsv1.3
. - Faznotify
Msg doubleQueue Max - faznotify max queued message per connector (10 - 10000).
- Faznotify
Msg doubleTimeout - faznotify message timeout (1 - 720 hours).
- Fsso
Refresh doubleInterval - FSSO refresh interval (60 - 600 seconds).
- Fsso
Sess doubleTimeout - FSSO session timeout (60 - 600 seconds).
- Px
Refresh doubleInterval - pxGrid refresh interval (60 - 1800 seconds).
- Px
Svr doubleTimeout - pxGrid server timeout (30 - 600 seconds).
- System
Connector stringId - an identifier for the resource.
- Cloud
Orchest float64Refresh Interval - Cloud Orchestration refresh interval (300 - 1800 seconds).
- Conn
Refresh float64Interval - connector refresh interval (60 - 1800 seconds).
- Conn
Ssl stringProtocol - set the lowest SSL protocol version for connector. follow-global-ssl-protocol - Follow system.global.global-ssl-protocol setting (default). sslv3 - set SSLv3 as the lowest version. tlsv1.0 - set TLSv1.0 as the lowest version. tlsv1.1 - set TLSv1.1 as the lowest version. tlsv1.2 - set TLSv1.2 as the lowest version. tlsv1.3 - set TLSv1.3 as the lowest version. Valid values:
follow-global-ssl-protocol
,sslv3
,tlsv1.0
,tlsv1.1
,tlsv1.2
,tlsv1.3
. - Faznotify
Msg float64Queue Max - faznotify max queued message per connector (10 - 10000).
- Faznotify
Msg float64Timeout - faznotify message timeout (1 - 720 hours).
- Fsso
Refresh float64Interval - FSSO refresh interval (60 - 600 seconds).
- Fsso
Sess float64Timeout - FSSO session timeout (60 - 600 seconds).
- Px
Refresh float64Interval - pxGrid refresh interval (60 - 1800 seconds).
- Px
Svr float64Timeout - pxGrid server timeout (30 - 600 seconds).
- System
Connector stringId - an identifier for the resource.
- cloud
Orchest DoubleRefresh Interval - Cloud Orchestration refresh interval (300 - 1800 seconds).
- conn
Refresh DoubleInterval - connector refresh interval (60 - 1800 seconds).
- conn
Ssl StringProtocol - set the lowest SSL protocol version for connector. follow-global-ssl-protocol - Follow system.global.global-ssl-protocol setting (default). sslv3 - set SSLv3 as the lowest version. tlsv1.0 - set TLSv1.0 as the lowest version. tlsv1.1 - set TLSv1.1 as the lowest version. tlsv1.2 - set TLSv1.2 as the lowest version. tlsv1.3 - set TLSv1.3 as the lowest version. Valid values:
follow-global-ssl-protocol
,sslv3
,tlsv1.0
,tlsv1.1
,tlsv1.2
,tlsv1.3
. - faznotify
Msg DoubleQueue Max - faznotify max queued message per connector (10 - 10000).
- faznotify
Msg DoubleTimeout - faznotify message timeout (1 - 720 hours).
- fsso
Refresh DoubleInterval - FSSO refresh interval (60 - 600 seconds).
- fsso
Sess DoubleTimeout - FSSO session timeout (60 - 600 seconds).
- px
Refresh DoubleInterval - pxGrid refresh interval (60 - 1800 seconds).
- px
Svr DoubleTimeout - pxGrid server timeout (30 - 600 seconds).
- system
Connector StringId - an identifier for the resource.
- cloud
Orchest numberRefresh Interval - Cloud Orchestration refresh interval (300 - 1800 seconds).
- conn
Refresh numberInterval - connector refresh interval (60 - 1800 seconds).
- conn
Ssl stringProtocol - set the lowest SSL protocol version for connector. follow-global-ssl-protocol - Follow system.global.global-ssl-protocol setting (default). sslv3 - set SSLv3 as the lowest version. tlsv1.0 - set TLSv1.0 as the lowest version. tlsv1.1 - set TLSv1.1 as the lowest version. tlsv1.2 - set TLSv1.2 as the lowest version. tlsv1.3 - set TLSv1.3 as the lowest version. Valid values:
follow-global-ssl-protocol
,sslv3
,tlsv1.0
,tlsv1.1
,tlsv1.2
,tlsv1.3
. - faznotify
Msg numberQueue Max - faznotify max queued message per connector (10 - 10000).
- faznotify
Msg numberTimeout - faznotify message timeout (1 - 720 hours).
- fsso
Refresh numberInterval - FSSO refresh interval (60 - 600 seconds).
- fsso
Sess numberTimeout - FSSO session timeout (60 - 600 seconds).
- px
Refresh numberInterval - pxGrid refresh interval (60 - 1800 seconds).
- px
Svr numberTimeout - pxGrid server timeout (30 - 600 seconds).
- system
Connector stringId - an identifier for the resource.
- cloud_
orchest_ floatrefresh_ interval - Cloud Orchestration refresh interval (300 - 1800 seconds).
- conn_
refresh_ floatinterval - connector refresh interval (60 - 1800 seconds).
- conn_
ssl_ strprotocol - set the lowest SSL protocol version for connector. follow-global-ssl-protocol - Follow system.global.global-ssl-protocol setting (default). sslv3 - set SSLv3 as the lowest version. tlsv1.0 - set TLSv1.0 as the lowest version. tlsv1.1 - set TLSv1.1 as the lowest version. tlsv1.2 - set TLSv1.2 as the lowest version. tlsv1.3 - set TLSv1.3 as the lowest version. Valid values:
follow-global-ssl-protocol
,sslv3
,tlsv1.0
,tlsv1.1
,tlsv1.2
,tlsv1.3
. - faznotify_
msg_ floatqueue_ max - faznotify max queued message per connector (10 - 10000).
- faznotify_
msg_ floattimeout - faznotify message timeout (1 - 720 hours).
- fsso_
refresh_ floatinterval - FSSO refresh interval (60 - 600 seconds).
- fsso_
sess_ floattimeout - FSSO session timeout (60 - 600 seconds).
- px_
refresh_ floatinterval - pxGrid refresh interval (60 - 1800 seconds).
- px_
svr_ floattimeout - pxGrid server timeout (30 - 600 seconds).
- system_
connector_ strid - an identifier for the resource.
- cloud
Orchest NumberRefresh Interval - Cloud Orchestration refresh interval (300 - 1800 seconds).
- conn
Refresh NumberInterval - connector refresh interval (60 - 1800 seconds).
- conn
Ssl StringProtocol - set the lowest SSL protocol version for connector. follow-global-ssl-protocol - Follow system.global.global-ssl-protocol setting (default). sslv3 - set SSLv3 as the lowest version. tlsv1.0 - set TLSv1.0 as the lowest version. tlsv1.1 - set TLSv1.1 as the lowest version. tlsv1.2 - set TLSv1.2 as the lowest version. tlsv1.3 - set TLSv1.3 as the lowest version. Valid values:
follow-global-ssl-protocol
,sslv3
,tlsv1.0
,tlsv1.1
,tlsv1.2
,tlsv1.3
. - faznotify
Msg NumberQueue Max - faznotify max queued message per connector (10 - 10000).
- faznotify
Msg NumberTimeout - faznotify message timeout (1 - 720 hours).
- fsso
Refresh NumberInterval - FSSO refresh interval (60 - 600 seconds).
- fsso
Sess NumberTimeout - FSSO session timeout (60 - 600 seconds).
- px
Refresh NumberInterval - pxGrid refresh interval (60 - 1800 seconds).
- px
Svr NumberTimeout - pxGrid server timeout (30 - 600 seconds).
- system
Connector StringId - an identifier for the resource.
Outputs
All input properties are implicitly available as output properties. Additionally, the SystemConnector 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 SystemConnector Resource
Get an existing SystemConnector 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?: SystemConnectorState, opts?: CustomResourceOptions): SystemConnector
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
cloud_orchest_refresh_interval: Optional[float] = None,
conn_refresh_interval: Optional[float] = None,
conn_ssl_protocol: Optional[str] = None,
faznotify_msg_queue_max: Optional[float] = None,
faznotify_msg_timeout: Optional[float] = None,
fsso_refresh_interval: Optional[float] = None,
fsso_sess_timeout: Optional[float] = None,
px_refresh_interval: Optional[float] = None,
px_svr_timeout: Optional[float] = None,
system_connector_id: Optional[str] = None) -> SystemConnector
func GetSystemConnector(ctx *Context, name string, id IDInput, state *SystemConnectorState, opts ...ResourceOption) (*SystemConnector, error)
public static SystemConnector Get(string name, Input<string> id, SystemConnectorState? state, CustomResourceOptions? opts = null)
public static SystemConnector get(String name, Output<String> id, SystemConnectorState state, CustomResourceOptions options)
resources: _: type: fortimanager:SystemConnector 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.
- Cloud
Orchest doubleRefresh Interval - Cloud Orchestration refresh interval (300 - 1800 seconds).
- Conn
Refresh doubleInterval - connector refresh interval (60 - 1800 seconds).
- Conn
Ssl stringProtocol - set the lowest SSL protocol version for connector. follow-global-ssl-protocol - Follow system.global.global-ssl-protocol setting (default). sslv3 - set SSLv3 as the lowest version. tlsv1.0 - set TLSv1.0 as the lowest version. tlsv1.1 - set TLSv1.1 as the lowest version. tlsv1.2 - set TLSv1.2 as the lowest version. tlsv1.3 - set TLSv1.3 as the lowest version. Valid values:
follow-global-ssl-protocol
,sslv3
,tlsv1.0
,tlsv1.1
,tlsv1.2
,tlsv1.3
. - Faznotify
Msg doubleQueue Max - faznotify max queued message per connector (10 - 10000).
- Faznotify
Msg doubleTimeout - faznotify message timeout (1 - 720 hours).
- Fsso
Refresh doubleInterval - FSSO refresh interval (60 - 600 seconds).
- Fsso
Sess doubleTimeout - FSSO session timeout (60 - 600 seconds).
- Px
Refresh doubleInterval - pxGrid refresh interval (60 - 1800 seconds).
- Px
Svr doubleTimeout - pxGrid server timeout (30 - 600 seconds).
- System
Connector stringId - an identifier for the resource.
- Cloud
Orchest float64Refresh Interval - Cloud Orchestration refresh interval (300 - 1800 seconds).
- Conn
Refresh float64Interval - connector refresh interval (60 - 1800 seconds).
- Conn
Ssl stringProtocol - set the lowest SSL protocol version for connector. follow-global-ssl-protocol - Follow system.global.global-ssl-protocol setting (default). sslv3 - set SSLv3 as the lowest version. tlsv1.0 - set TLSv1.0 as the lowest version. tlsv1.1 - set TLSv1.1 as the lowest version. tlsv1.2 - set TLSv1.2 as the lowest version. tlsv1.3 - set TLSv1.3 as the lowest version. Valid values:
follow-global-ssl-protocol
,sslv3
,tlsv1.0
,tlsv1.1
,tlsv1.2
,tlsv1.3
. - Faznotify
Msg float64Queue Max - faznotify max queued message per connector (10 - 10000).
- Faznotify
Msg float64Timeout - faznotify message timeout (1 - 720 hours).
- Fsso
Refresh float64Interval - FSSO refresh interval (60 - 600 seconds).
- Fsso
Sess float64Timeout - FSSO session timeout (60 - 600 seconds).
- Px
Refresh float64Interval - pxGrid refresh interval (60 - 1800 seconds).
- Px
Svr float64Timeout - pxGrid server timeout (30 - 600 seconds).
- System
Connector stringId - an identifier for the resource.
- cloud
Orchest DoubleRefresh Interval - Cloud Orchestration refresh interval (300 - 1800 seconds).
- conn
Refresh DoubleInterval - connector refresh interval (60 - 1800 seconds).
- conn
Ssl StringProtocol - set the lowest SSL protocol version for connector. follow-global-ssl-protocol - Follow system.global.global-ssl-protocol setting (default). sslv3 - set SSLv3 as the lowest version. tlsv1.0 - set TLSv1.0 as the lowest version. tlsv1.1 - set TLSv1.1 as the lowest version. tlsv1.2 - set TLSv1.2 as the lowest version. tlsv1.3 - set TLSv1.3 as the lowest version. Valid values:
follow-global-ssl-protocol
,sslv3
,tlsv1.0
,tlsv1.1
,tlsv1.2
,tlsv1.3
. - faznotify
Msg DoubleQueue Max - faznotify max queued message per connector (10 - 10000).
- faznotify
Msg DoubleTimeout - faznotify message timeout (1 - 720 hours).
- fsso
Refresh DoubleInterval - FSSO refresh interval (60 - 600 seconds).
- fsso
Sess DoubleTimeout - FSSO session timeout (60 - 600 seconds).
- px
Refresh DoubleInterval - pxGrid refresh interval (60 - 1800 seconds).
- px
Svr DoubleTimeout - pxGrid server timeout (30 - 600 seconds).
- system
Connector StringId - an identifier for the resource.
- cloud
Orchest numberRefresh Interval - Cloud Orchestration refresh interval (300 - 1800 seconds).
- conn
Refresh numberInterval - connector refresh interval (60 - 1800 seconds).
- conn
Ssl stringProtocol - set the lowest SSL protocol version for connector. follow-global-ssl-protocol - Follow system.global.global-ssl-protocol setting (default). sslv3 - set SSLv3 as the lowest version. tlsv1.0 - set TLSv1.0 as the lowest version. tlsv1.1 - set TLSv1.1 as the lowest version. tlsv1.2 - set TLSv1.2 as the lowest version. tlsv1.3 - set TLSv1.3 as the lowest version. Valid values:
follow-global-ssl-protocol
,sslv3
,tlsv1.0
,tlsv1.1
,tlsv1.2
,tlsv1.3
. - faznotify
Msg numberQueue Max - faznotify max queued message per connector (10 - 10000).
- faznotify
Msg numberTimeout - faznotify message timeout (1 - 720 hours).
- fsso
Refresh numberInterval - FSSO refresh interval (60 - 600 seconds).
- fsso
Sess numberTimeout - FSSO session timeout (60 - 600 seconds).
- px
Refresh numberInterval - pxGrid refresh interval (60 - 1800 seconds).
- px
Svr numberTimeout - pxGrid server timeout (30 - 600 seconds).
- system
Connector stringId - an identifier for the resource.
- cloud_
orchest_ floatrefresh_ interval - Cloud Orchestration refresh interval (300 - 1800 seconds).
- conn_
refresh_ floatinterval - connector refresh interval (60 - 1800 seconds).
- conn_
ssl_ strprotocol - set the lowest SSL protocol version for connector. follow-global-ssl-protocol - Follow system.global.global-ssl-protocol setting (default). sslv3 - set SSLv3 as the lowest version. tlsv1.0 - set TLSv1.0 as the lowest version. tlsv1.1 - set TLSv1.1 as the lowest version. tlsv1.2 - set TLSv1.2 as the lowest version. tlsv1.3 - set TLSv1.3 as the lowest version. Valid values:
follow-global-ssl-protocol
,sslv3
,tlsv1.0
,tlsv1.1
,tlsv1.2
,tlsv1.3
. - faznotify_
msg_ floatqueue_ max - faznotify max queued message per connector (10 - 10000).
- faznotify_
msg_ floattimeout - faznotify message timeout (1 - 720 hours).
- fsso_
refresh_ floatinterval - FSSO refresh interval (60 - 600 seconds).
- fsso_
sess_ floattimeout - FSSO session timeout (60 - 600 seconds).
- px_
refresh_ floatinterval - pxGrid refresh interval (60 - 1800 seconds).
- px_
svr_ floattimeout - pxGrid server timeout (30 - 600 seconds).
- system_
connector_ strid - an identifier for the resource.
- cloud
Orchest NumberRefresh Interval - Cloud Orchestration refresh interval (300 - 1800 seconds).
- conn
Refresh NumberInterval - connector refresh interval (60 - 1800 seconds).
- conn
Ssl StringProtocol - set the lowest SSL protocol version for connector. follow-global-ssl-protocol - Follow system.global.global-ssl-protocol setting (default). sslv3 - set SSLv3 as the lowest version. tlsv1.0 - set TLSv1.0 as the lowest version. tlsv1.1 - set TLSv1.1 as the lowest version. tlsv1.2 - set TLSv1.2 as the lowest version. tlsv1.3 - set TLSv1.3 as the lowest version. Valid values:
follow-global-ssl-protocol
,sslv3
,tlsv1.0
,tlsv1.1
,tlsv1.2
,tlsv1.3
. - faznotify
Msg NumberQueue Max - faznotify max queued message per connector (10 - 10000).
- faznotify
Msg NumberTimeout - faznotify message timeout (1 - 720 hours).
- fsso
Refresh NumberInterval - FSSO refresh interval (60 - 600 seconds).
- fsso
Sess NumberTimeout - FSSO session timeout (60 - 600 seconds).
- px
Refresh NumberInterval - pxGrid refresh interval (60 - 1800 seconds).
- px
Svr NumberTimeout - pxGrid server timeout (30 - 600 seconds).
- system
Connector StringId - an identifier for the resource.
Import
System Connector can be imported using any of these accepted formats:
$ export “FORTIMANAGER_IMPORT_TABLE”=“true”
$ pulumi import fortimanager:index/systemConnector:SystemConnector labelname SystemConnector
$ unset “FORTIMANAGER_IMPORT_TABLE”
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.