fortimanager.ObjectSystemFortiguard
Explore with Pulumi AI
Configure FortiGuard services.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as fortimanager from "@pulumi/fortimanager";
const labelname = new fortimanager.ObjectSystemFortiguard("labelname", {
antispamCache: "enable",
antispamCacheMpercent: 2,
antispamCacheTtl: 1800,
antispamExpiration: 0,
antispamForceOff: "disable",
antispamLicense: 4294967295,
antispamTimeout: 7,
anycastSdnsServerIp: "0.0.0.0",
anycastSdnsServerPort: 853,
autoJoinForticloud: "disable",
ddnsServerIp: "0.0.0.0",
ddnsServerPort: 443,
fortiguardAnycast: "enable",
fortiguardAnycastSource: "fortinet",
interfaceSelectMethod: "auto",
loadBalanceServers: 1,
outbreakPreventionCache: "enable",
outbreakPreventionCacheMpercent: 2,
outbreakPreventionCacheTtl: 300,
outbreakPreventionExpiration: 0,
outbreakPreventionForceOff: "disable",
outbreakPreventionLicense: 4294967295,
outbreakPreventionTimeout: 7,
port: "443",
protocol: "https",
proxyPasswords: ["fdafdas"],
proxyServerIp: "0.0.0.0",
proxyServerPort: 0,
sdnsOptions: [],
sdnsServerIps: [],
sdnsServerPort: 0,
sourceIp: "0.0.0.0",
sourceIp6: "::",
updateServerLocation: "usa",
webfilterCache: "enable",
webfilterCacheTtl: 3600,
webfilterExpiration: 0,
webfilterForceOff: "disable",
webfilterLicense: 4294967295,
webfilterTimeout: 15,
});
import pulumi
import pulumi_fortimanager as fortimanager
labelname = fortimanager.ObjectSystemFortiguard("labelname",
antispam_cache="enable",
antispam_cache_mpercent=2,
antispam_cache_ttl=1800,
antispam_expiration=0,
antispam_force_off="disable",
antispam_license=4294967295,
antispam_timeout=7,
anycast_sdns_server_ip="0.0.0.0",
anycast_sdns_server_port=853,
auto_join_forticloud="disable",
ddns_server_ip="0.0.0.0",
ddns_server_port=443,
fortiguard_anycast="enable",
fortiguard_anycast_source="fortinet",
interface_select_method="auto",
load_balance_servers=1,
outbreak_prevention_cache="enable",
outbreak_prevention_cache_mpercent=2,
outbreak_prevention_cache_ttl=300,
outbreak_prevention_expiration=0,
outbreak_prevention_force_off="disable",
outbreak_prevention_license=4294967295,
outbreak_prevention_timeout=7,
port="443",
protocol="https",
proxy_passwords=["fdafdas"],
proxy_server_ip="0.0.0.0",
proxy_server_port=0,
sdns_options=[],
sdns_server_ips=[],
sdns_server_port=0,
source_ip="0.0.0.0",
source_ip6="::",
update_server_location="usa",
webfilter_cache="enable",
webfilter_cache_ttl=3600,
webfilter_expiration=0,
webfilter_force_off="disable",
webfilter_license=4294967295,
webfilter_timeout=15)
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.NewObjectSystemFortiguard(ctx, "labelname", &fortimanager.ObjectSystemFortiguardArgs{
AntispamCache: pulumi.String("enable"),
AntispamCacheMpercent: pulumi.Float64(2),
AntispamCacheTtl: pulumi.Float64(1800),
AntispamExpiration: pulumi.Float64(0),
AntispamForceOff: pulumi.String("disable"),
AntispamLicense: pulumi.Float64(4294967295),
AntispamTimeout: pulumi.Float64(7),
AnycastSdnsServerIp: pulumi.String("0.0.0.0"),
AnycastSdnsServerPort: pulumi.Float64(853),
AutoJoinForticloud: pulumi.String("disable"),
DdnsServerIp: pulumi.String("0.0.0.0"),
DdnsServerPort: pulumi.Float64(443),
FortiguardAnycast: pulumi.String("enable"),
FortiguardAnycastSource: pulumi.String("fortinet"),
InterfaceSelectMethod: pulumi.String("auto"),
LoadBalanceServers: pulumi.Float64(1),
OutbreakPreventionCache: pulumi.String("enable"),
OutbreakPreventionCacheMpercent: pulumi.Float64(2),
OutbreakPreventionCacheTtl: pulumi.Float64(300),
OutbreakPreventionExpiration: pulumi.Float64(0),
OutbreakPreventionForceOff: pulumi.String("disable"),
OutbreakPreventionLicense: pulumi.Float64(4294967295),
OutbreakPreventionTimeout: pulumi.Float64(7),
Port: pulumi.String("443"),
Protocol: pulumi.String("https"),
ProxyPasswords: pulumi.StringArray{
pulumi.String("fdafdas"),
},
ProxyServerIp: pulumi.String("0.0.0.0"),
ProxyServerPort: pulumi.Float64(0),
SdnsOptions: pulumi.StringArray{},
SdnsServerIps: pulumi.StringArray{},
SdnsServerPort: pulumi.Float64(0),
SourceIp: pulumi.String("0.0.0.0"),
SourceIp6: pulumi.String("::"),
UpdateServerLocation: pulumi.String("usa"),
WebfilterCache: pulumi.String("enable"),
WebfilterCacheTtl: pulumi.Float64(3600),
WebfilterExpiration: pulumi.Float64(0),
WebfilterForceOff: pulumi.String("disable"),
WebfilterLicense: pulumi.Float64(4294967295),
WebfilterTimeout: pulumi.Float64(15),
})
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 labelname = new Fortimanager.ObjectSystemFortiguard("labelname", new()
{
AntispamCache = "enable",
AntispamCacheMpercent = 2,
AntispamCacheTtl = 1800,
AntispamExpiration = 0,
AntispamForceOff = "disable",
AntispamLicense = 4294967295,
AntispamTimeout = 7,
AnycastSdnsServerIp = "0.0.0.0",
AnycastSdnsServerPort = 853,
AutoJoinForticloud = "disable",
DdnsServerIp = "0.0.0.0",
DdnsServerPort = 443,
FortiguardAnycast = "enable",
FortiguardAnycastSource = "fortinet",
InterfaceSelectMethod = "auto",
LoadBalanceServers = 1,
OutbreakPreventionCache = "enable",
OutbreakPreventionCacheMpercent = 2,
OutbreakPreventionCacheTtl = 300,
OutbreakPreventionExpiration = 0,
OutbreakPreventionForceOff = "disable",
OutbreakPreventionLicense = 4294967295,
OutbreakPreventionTimeout = 7,
Port = "443",
Protocol = "https",
ProxyPasswords = new[]
{
"fdafdas",
},
ProxyServerIp = "0.0.0.0",
ProxyServerPort = 0,
SdnsOptions = new[] {},
SdnsServerIps = new[] {},
SdnsServerPort = 0,
SourceIp = "0.0.0.0",
SourceIp6 = "::",
UpdateServerLocation = "usa",
WebfilterCache = "enable",
WebfilterCacheTtl = 3600,
WebfilterExpiration = 0,
WebfilterForceOff = "disable",
WebfilterLicense = 4294967295,
WebfilterTimeout = 15,
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.fortimanager.ObjectSystemFortiguard;
import com.pulumi.fortimanager.ObjectSystemFortiguardArgs;
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 labelname = new ObjectSystemFortiguard("labelname", ObjectSystemFortiguardArgs.builder()
.antispamCache("enable")
.antispamCacheMpercent(2)
.antispamCacheTtl(1800)
.antispamExpiration(0)
.antispamForceOff("disable")
.antispamLicense(4294967295)
.antispamTimeout(7)
.anycastSdnsServerIp("0.0.0.0")
.anycastSdnsServerPort(853)
.autoJoinForticloud("disable")
.ddnsServerIp("0.0.0.0")
.ddnsServerPort(443)
.fortiguardAnycast("enable")
.fortiguardAnycastSource("fortinet")
.interfaceSelectMethod("auto")
.loadBalanceServers(1)
.outbreakPreventionCache("enable")
.outbreakPreventionCacheMpercent(2)
.outbreakPreventionCacheTtl(300)
.outbreakPreventionExpiration(0)
.outbreakPreventionForceOff("disable")
.outbreakPreventionLicense(4294967295)
.outbreakPreventionTimeout(7)
.port("443")
.protocol("https")
.proxyPasswords("fdafdas")
.proxyServerIp("0.0.0.0")
.proxyServerPort(0)
.sdnsOptions()
.sdnsServerIps()
.sdnsServerPort(0)
.sourceIp("0.0.0.0")
.sourceIp6("::")
.updateServerLocation("usa")
.webfilterCache("enable")
.webfilterCacheTtl(3600)
.webfilterExpiration(0)
.webfilterForceOff("disable")
.webfilterLicense(4294967295)
.webfilterTimeout(15)
.build());
}
}
resources:
labelname:
type: fortimanager:ObjectSystemFortiguard
properties:
antispamCache: enable
antispamCacheMpercent: 2
antispamCacheTtl: 1800
antispamExpiration: 0
antispamForceOff: disable
antispamLicense: 4.294967295e+09
antispamTimeout: 7
anycastSdnsServerIp: 0.0.0.0
anycastSdnsServerPort: 853
autoJoinForticloud: disable
ddnsServerIp: 0.0.0.0
ddnsServerPort: 443
fortiguardAnycast: enable
fortiguardAnycastSource: fortinet
interfaceSelectMethod: auto
loadBalanceServers: 1
outbreakPreventionCache: enable
outbreakPreventionCacheMpercent: 2
outbreakPreventionCacheTtl: 300
outbreakPreventionExpiration: 0
outbreakPreventionForceOff: disable
outbreakPreventionLicense: 4.294967295e+09
outbreakPreventionTimeout: 7
port: '443'
protocol: https
proxyPasswords:
- fdafdas
proxyServerIp: 0.0.0.0
proxyServerPort: 0
sdnsOptions: []
sdnsServerIps: []
sdnsServerPort: 0
sourceIp: 0.0.0.0
sourceIp6: '::'
updateServerLocation: usa
webfilterCache: enable
webfilterCacheTtl: 3600
webfilterExpiration: 0
webfilterForceOff: disable
webfilterLicense: 4.294967295e+09
webfilterTimeout: 15
Create ObjectSystemFortiguard Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new ObjectSystemFortiguard(name: string, args?: ObjectSystemFortiguardArgs, opts?: CustomResourceOptions);
@overload
def ObjectSystemFortiguard(resource_name: str,
args: Optional[ObjectSystemFortiguardArgs] = None,
opts: Optional[ResourceOptions] = None)
@overload
def ObjectSystemFortiguard(resource_name: str,
opts: Optional[ResourceOptions] = None,
adom: Optional[str] = None,
antispam_cache: Optional[str] = None,
antispam_cache_mpercent: Optional[float] = None,
antispam_cache_mpermille: Optional[float] = None,
antispam_cache_ttl: Optional[float] = None,
antispam_expiration: Optional[float] = None,
antispam_force_off: Optional[str] = None,
antispam_license: Optional[float] = None,
antispam_timeout: Optional[float] = None,
anycast_sdns_server_ip: Optional[str] = None,
anycast_sdns_server_port: Optional[float] = None,
auto_firmware_upgrade: Optional[str] = None,
auto_firmware_upgrade_days: Optional[Sequence[str]] = None,
auto_firmware_upgrade_delay: Optional[float] = None,
auto_firmware_upgrade_end_hour: Optional[float] = None,
auto_firmware_upgrade_start_hour: Optional[float] = None,
auto_join_forticloud: Optional[str] = None,
ddns_server_ip: Optional[str] = None,
ddns_server_ip6: Optional[str] = None,
ddns_server_port: Optional[float] = None,
fds_license_expiring_days: Optional[float] = None,
fortiguard_anycast: Optional[str] = None,
fortiguard_anycast_source: Optional[str] = None,
gui_prompt_auto_upgrade: Optional[str] = None,
interface: Optional[str] = None,
interface_select_method: Optional[str] = None,
load_balance_servers: Optional[float] = None,
object_system_fortiguard_id: Optional[str] = None,
outbreak_prevention_cache: Optional[str] = None,
outbreak_prevention_cache_mpercent: Optional[float] = None,
outbreak_prevention_cache_mpermille: Optional[float] = None,
outbreak_prevention_cache_ttl: Optional[float] = None,
outbreak_prevention_expiration: Optional[float] = None,
outbreak_prevention_force_off: Optional[str] = None,
outbreak_prevention_license: Optional[float] = None,
outbreak_prevention_timeout: Optional[float] = None,
persistent_connection: Optional[str] = None,
port: Optional[str] = None,
protocol: Optional[str] = None,
proxy_passwords: Optional[Sequence[str]] = None,
proxy_server_ip: Optional[str] = None,
proxy_server_port: Optional[float] = None,
proxy_username: Optional[str] = None,
sandbox_inline_scan: Optional[str] = None,
sandbox_region: Optional[str] = None,
scopetype: Optional[str] = None,
sdns_options: Optional[Sequence[str]] = None,
sdns_server_ips: Optional[Sequence[str]] = None,
sdns_server_port: Optional[float] = None,
service_account_id: Optional[str] = None,
source_ip: Optional[str] = None,
source_ip6: Optional[str] = None,
update_build_proxy: Optional[str] = None,
update_dldb: Optional[str] = None,
update_extdb: Optional[str] = None,
update_ffdb: Optional[str] = None,
update_server_location: Optional[str] = None,
update_uwdb: Optional[str] = None,
vdom: Optional[str] = None,
videofilter_expiration: Optional[float] = None,
videofilter_license: Optional[float] = None,
webfilter_cache: Optional[str] = None,
webfilter_cache_ttl: Optional[float] = None,
webfilter_expiration: Optional[float] = None,
webfilter_force_off: Optional[str] = None,
webfilter_license: Optional[float] = None,
webfilter_timeout: Optional[float] = None)
func NewObjectSystemFortiguard(ctx *Context, name string, args *ObjectSystemFortiguardArgs, opts ...ResourceOption) (*ObjectSystemFortiguard, error)
public ObjectSystemFortiguard(string name, ObjectSystemFortiguardArgs? args = null, CustomResourceOptions? opts = null)
public ObjectSystemFortiguard(String name, ObjectSystemFortiguardArgs args)
public ObjectSystemFortiguard(String name, ObjectSystemFortiguardArgs args, CustomResourceOptions options)
type: fortimanager:ObjectSystemFortiguard
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 ObjectSystemFortiguardArgs
- 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 ObjectSystemFortiguardArgs
- 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 ObjectSystemFortiguardArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ObjectSystemFortiguardArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ObjectSystemFortiguardArgs
- 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 objectSystemFortiguardResource = new Fortimanager.ObjectSystemFortiguard("objectSystemFortiguardResource", new()
{
Adom = "string",
AntispamCache = "string",
AntispamCacheMpercent = 0,
AntispamCacheMpermille = 0,
AntispamCacheTtl = 0,
AntispamExpiration = 0,
AntispamForceOff = "string",
AntispamLicense = 0,
AntispamTimeout = 0,
AnycastSdnsServerIp = "string",
AnycastSdnsServerPort = 0,
AutoFirmwareUpgrade = "string",
AutoFirmwareUpgradeDays = new[]
{
"string",
},
AutoFirmwareUpgradeDelay = 0,
AutoFirmwareUpgradeEndHour = 0,
AutoFirmwareUpgradeStartHour = 0,
AutoJoinForticloud = "string",
DdnsServerIp = "string",
DdnsServerIp6 = "string",
DdnsServerPort = 0,
FdsLicenseExpiringDays = 0,
FortiguardAnycast = "string",
FortiguardAnycastSource = "string",
GuiPromptAutoUpgrade = "string",
Interface = "string",
InterfaceSelectMethod = "string",
LoadBalanceServers = 0,
ObjectSystemFortiguardId = "string",
OutbreakPreventionCache = "string",
OutbreakPreventionCacheMpercent = 0,
OutbreakPreventionCacheMpermille = 0,
OutbreakPreventionCacheTtl = 0,
OutbreakPreventionExpiration = 0,
OutbreakPreventionForceOff = "string",
OutbreakPreventionLicense = 0,
OutbreakPreventionTimeout = 0,
PersistentConnection = "string",
Port = "string",
Protocol = "string",
ProxyPasswords = new[]
{
"string",
},
ProxyServerIp = "string",
ProxyServerPort = 0,
ProxyUsername = "string",
SandboxInlineScan = "string",
SandboxRegion = "string",
Scopetype = "string",
SdnsOptions = new[]
{
"string",
},
SdnsServerIps = new[]
{
"string",
},
SdnsServerPort = 0,
ServiceAccountId = "string",
SourceIp = "string",
SourceIp6 = "string",
UpdateBuildProxy = "string",
UpdateDldb = "string",
UpdateExtdb = "string",
UpdateFfdb = "string",
UpdateServerLocation = "string",
UpdateUwdb = "string",
Vdom = "string",
VideofilterExpiration = 0,
VideofilterLicense = 0,
WebfilterCache = "string",
WebfilterCacheTtl = 0,
WebfilterExpiration = 0,
WebfilterForceOff = "string",
WebfilterLicense = 0,
WebfilterTimeout = 0,
});
example, err := fortimanager.NewObjectSystemFortiguard(ctx, "objectSystemFortiguardResource", &fortimanager.ObjectSystemFortiguardArgs{
Adom: pulumi.String("string"),
AntispamCache: pulumi.String("string"),
AntispamCacheMpercent: pulumi.Float64(0),
AntispamCacheMpermille: pulumi.Float64(0),
AntispamCacheTtl: pulumi.Float64(0),
AntispamExpiration: pulumi.Float64(0),
AntispamForceOff: pulumi.String("string"),
AntispamLicense: pulumi.Float64(0),
AntispamTimeout: pulumi.Float64(0),
AnycastSdnsServerIp: pulumi.String("string"),
AnycastSdnsServerPort: pulumi.Float64(0),
AutoFirmwareUpgrade: pulumi.String("string"),
AutoFirmwareUpgradeDays: pulumi.StringArray{
pulumi.String("string"),
},
AutoFirmwareUpgradeDelay: pulumi.Float64(0),
AutoFirmwareUpgradeEndHour: pulumi.Float64(0),
AutoFirmwareUpgradeStartHour: pulumi.Float64(0),
AutoJoinForticloud: pulumi.String("string"),
DdnsServerIp: pulumi.String("string"),
DdnsServerIp6: pulumi.String("string"),
DdnsServerPort: pulumi.Float64(0),
FdsLicenseExpiringDays: pulumi.Float64(0),
FortiguardAnycast: pulumi.String("string"),
FortiguardAnycastSource: pulumi.String("string"),
GuiPromptAutoUpgrade: pulumi.String("string"),
Interface: pulumi.String("string"),
InterfaceSelectMethod: pulumi.String("string"),
LoadBalanceServers: pulumi.Float64(0),
ObjectSystemFortiguardId: pulumi.String("string"),
OutbreakPreventionCache: pulumi.String("string"),
OutbreakPreventionCacheMpercent: pulumi.Float64(0),
OutbreakPreventionCacheMpermille: pulumi.Float64(0),
OutbreakPreventionCacheTtl: pulumi.Float64(0),
OutbreakPreventionExpiration: pulumi.Float64(0),
OutbreakPreventionForceOff: pulumi.String("string"),
OutbreakPreventionLicense: pulumi.Float64(0),
OutbreakPreventionTimeout: pulumi.Float64(0),
PersistentConnection: pulumi.String("string"),
Port: pulumi.String("string"),
Protocol: pulumi.String("string"),
ProxyPasswords: pulumi.StringArray{
pulumi.String("string"),
},
ProxyServerIp: pulumi.String("string"),
ProxyServerPort: pulumi.Float64(0),
ProxyUsername: pulumi.String("string"),
SandboxInlineScan: pulumi.String("string"),
SandboxRegion: pulumi.String("string"),
Scopetype: pulumi.String("string"),
SdnsOptions: pulumi.StringArray{
pulumi.String("string"),
},
SdnsServerIps: pulumi.StringArray{
pulumi.String("string"),
},
SdnsServerPort: pulumi.Float64(0),
ServiceAccountId: pulumi.String("string"),
SourceIp: pulumi.String("string"),
SourceIp6: pulumi.String("string"),
UpdateBuildProxy: pulumi.String("string"),
UpdateDldb: pulumi.String("string"),
UpdateExtdb: pulumi.String("string"),
UpdateFfdb: pulumi.String("string"),
UpdateServerLocation: pulumi.String("string"),
UpdateUwdb: pulumi.String("string"),
Vdom: pulumi.String("string"),
VideofilterExpiration: pulumi.Float64(0),
VideofilterLicense: pulumi.Float64(0),
WebfilterCache: pulumi.String("string"),
WebfilterCacheTtl: pulumi.Float64(0),
WebfilterExpiration: pulumi.Float64(0),
WebfilterForceOff: pulumi.String("string"),
WebfilterLicense: pulumi.Float64(0),
WebfilterTimeout: pulumi.Float64(0),
})
var objectSystemFortiguardResource = new ObjectSystemFortiguard("objectSystemFortiguardResource", ObjectSystemFortiguardArgs.builder()
.adom("string")
.antispamCache("string")
.antispamCacheMpercent(0)
.antispamCacheMpermille(0)
.antispamCacheTtl(0)
.antispamExpiration(0)
.antispamForceOff("string")
.antispamLicense(0)
.antispamTimeout(0)
.anycastSdnsServerIp("string")
.anycastSdnsServerPort(0)
.autoFirmwareUpgrade("string")
.autoFirmwareUpgradeDays("string")
.autoFirmwareUpgradeDelay(0)
.autoFirmwareUpgradeEndHour(0)
.autoFirmwareUpgradeStartHour(0)
.autoJoinForticloud("string")
.ddnsServerIp("string")
.ddnsServerIp6("string")
.ddnsServerPort(0)
.fdsLicenseExpiringDays(0)
.fortiguardAnycast("string")
.fortiguardAnycastSource("string")
.guiPromptAutoUpgrade("string")
.interface_("string")
.interfaceSelectMethod("string")
.loadBalanceServers(0)
.objectSystemFortiguardId("string")
.outbreakPreventionCache("string")
.outbreakPreventionCacheMpercent(0)
.outbreakPreventionCacheMpermille(0)
.outbreakPreventionCacheTtl(0)
.outbreakPreventionExpiration(0)
.outbreakPreventionForceOff("string")
.outbreakPreventionLicense(0)
.outbreakPreventionTimeout(0)
.persistentConnection("string")
.port("string")
.protocol("string")
.proxyPasswords("string")
.proxyServerIp("string")
.proxyServerPort(0)
.proxyUsername("string")
.sandboxInlineScan("string")
.sandboxRegion("string")
.scopetype("string")
.sdnsOptions("string")
.sdnsServerIps("string")
.sdnsServerPort(0)
.serviceAccountId("string")
.sourceIp("string")
.sourceIp6("string")
.updateBuildProxy("string")
.updateDldb("string")
.updateExtdb("string")
.updateFfdb("string")
.updateServerLocation("string")
.updateUwdb("string")
.vdom("string")
.videofilterExpiration(0)
.videofilterLicense(0)
.webfilterCache("string")
.webfilterCacheTtl(0)
.webfilterExpiration(0)
.webfilterForceOff("string")
.webfilterLicense(0)
.webfilterTimeout(0)
.build());
object_system_fortiguard_resource = fortimanager.ObjectSystemFortiguard("objectSystemFortiguardResource",
adom="string",
antispam_cache="string",
antispam_cache_mpercent=0,
antispam_cache_mpermille=0,
antispam_cache_ttl=0,
antispam_expiration=0,
antispam_force_off="string",
antispam_license=0,
antispam_timeout=0,
anycast_sdns_server_ip="string",
anycast_sdns_server_port=0,
auto_firmware_upgrade="string",
auto_firmware_upgrade_days=["string"],
auto_firmware_upgrade_delay=0,
auto_firmware_upgrade_end_hour=0,
auto_firmware_upgrade_start_hour=0,
auto_join_forticloud="string",
ddns_server_ip="string",
ddns_server_ip6="string",
ddns_server_port=0,
fds_license_expiring_days=0,
fortiguard_anycast="string",
fortiguard_anycast_source="string",
gui_prompt_auto_upgrade="string",
interface="string",
interface_select_method="string",
load_balance_servers=0,
object_system_fortiguard_id="string",
outbreak_prevention_cache="string",
outbreak_prevention_cache_mpercent=0,
outbreak_prevention_cache_mpermille=0,
outbreak_prevention_cache_ttl=0,
outbreak_prevention_expiration=0,
outbreak_prevention_force_off="string",
outbreak_prevention_license=0,
outbreak_prevention_timeout=0,
persistent_connection="string",
port="string",
protocol="string",
proxy_passwords=["string"],
proxy_server_ip="string",
proxy_server_port=0,
proxy_username="string",
sandbox_inline_scan="string",
sandbox_region="string",
scopetype="string",
sdns_options=["string"],
sdns_server_ips=["string"],
sdns_server_port=0,
service_account_id="string",
source_ip="string",
source_ip6="string",
update_build_proxy="string",
update_dldb="string",
update_extdb="string",
update_ffdb="string",
update_server_location="string",
update_uwdb="string",
vdom="string",
videofilter_expiration=0,
videofilter_license=0,
webfilter_cache="string",
webfilter_cache_ttl=0,
webfilter_expiration=0,
webfilter_force_off="string",
webfilter_license=0,
webfilter_timeout=0)
const objectSystemFortiguardResource = new fortimanager.ObjectSystemFortiguard("objectSystemFortiguardResource", {
adom: "string",
antispamCache: "string",
antispamCacheMpercent: 0,
antispamCacheMpermille: 0,
antispamCacheTtl: 0,
antispamExpiration: 0,
antispamForceOff: "string",
antispamLicense: 0,
antispamTimeout: 0,
anycastSdnsServerIp: "string",
anycastSdnsServerPort: 0,
autoFirmwareUpgrade: "string",
autoFirmwareUpgradeDays: ["string"],
autoFirmwareUpgradeDelay: 0,
autoFirmwareUpgradeEndHour: 0,
autoFirmwareUpgradeStartHour: 0,
autoJoinForticloud: "string",
ddnsServerIp: "string",
ddnsServerIp6: "string",
ddnsServerPort: 0,
fdsLicenseExpiringDays: 0,
fortiguardAnycast: "string",
fortiguardAnycastSource: "string",
guiPromptAutoUpgrade: "string",
"interface": "string",
interfaceSelectMethod: "string",
loadBalanceServers: 0,
objectSystemFortiguardId: "string",
outbreakPreventionCache: "string",
outbreakPreventionCacheMpercent: 0,
outbreakPreventionCacheMpermille: 0,
outbreakPreventionCacheTtl: 0,
outbreakPreventionExpiration: 0,
outbreakPreventionForceOff: "string",
outbreakPreventionLicense: 0,
outbreakPreventionTimeout: 0,
persistentConnection: "string",
port: "string",
protocol: "string",
proxyPasswords: ["string"],
proxyServerIp: "string",
proxyServerPort: 0,
proxyUsername: "string",
sandboxInlineScan: "string",
sandboxRegion: "string",
scopetype: "string",
sdnsOptions: ["string"],
sdnsServerIps: ["string"],
sdnsServerPort: 0,
serviceAccountId: "string",
sourceIp: "string",
sourceIp6: "string",
updateBuildProxy: "string",
updateDldb: "string",
updateExtdb: "string",
updateFfdb: "string",
updateServerLocation: "string",
updateUwdb: "string",
vdom: "string",
videofilterExpiration: 0,
videofilterLicense: 0,
webfilterCache: "string",
webfilterCacheTtl: 0,
webfilterExpiration: 0,
webfilterForceOff: "string",
webfilterLicense: 0,
webfilterTimeout: 0,
});
type: fortimanager:ObjectSystemFortiguard
properties:
adom: string
antispamCache: string
antispamCacheMpercent: 0
antispamCacheMpermille: 0
antispamCacheTtl: 0
antispamExpiration: 0
antispamForceOff: string
antispamLicense: 0
antispamTimeout: 0
anycastSdnsServerIp: string
anycastSdnsServerPort: 0
autoFirmwareUpgrade: string
autoFirmwareUpgradeDays:
- string
autoFirmwareUpgradeDelay: 0
autoFirmwareUpgradeEndHour: 0
autoFirmwareUpgradeStartHour: 0
autoJoinForticloud: string
ddnsServerIp: string
ddnsServerIp6: string
ddnsServerPort: 0
fdsLicenseExpiringDays: 0
fortiguardAnycast: string
fortiguardAnycastSource: string
guiPromptAutoUpgrade: string
interface: string
interfaceSelectMethod: string
loadBalanceServers: 0
objectSystemFortiguardId: string
outbreakPreventionCache: string
outbreakPreventionCacheMpercent: 0
outbreakPreventionCacheMpermille: 0
outbreakPreventionCacheTtl: 0
outbreakPreventionExpiration: 0
outbreakPreventionForceOff: string
outbreakPreventionLicense: 0
outbreakPreventionTimeout: 0
persistentConnection: string
port: string
protocol: string
proxyPasswords:
- string
proxyServerIp: string
proxyServerPort: 0
proxyUsername: string
sandboxInlineScan: string
sandboxRegion: string
scopetype: string
sdnsOptions:
- string
sdnsServerIps:
- string
sdnsServerPort: 0
serviceAccountId: string
sourceIp: string
sourceIp6: string
updateBuildProxy: string
updateDldb: string
updateExtdb: string
updateFfdb: string
updateServerLocation: string
updateUwdb: string
vdom: string
videofilterExpiration: 0
videofilterLicense: 0
webfilterCache: string
webfilterCacheTtl: 0
webfilterExpiration: 0
webfilterForceOff: string
webfilterLicense: 0
webfilterTimeout: 0
ObjectSystemFortiguard 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 ObjectSystemFortiguard resource accepts the following input properties:
- Adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - Antispam
Cache string - Enable/disable FortiGuard antispam request caching. Uses a small amount of memory but improves performance. Valid values:
disable
,enable
. - Antispam
Cache doubleMpercent - Maximum percent of FortiGate memory the antispam cache is allowed to use (1 - 15%).
- Antispam
Cache doubleMpermille - Maximum permille of FortiGate memory the antispam cache is allowed to use (1 - 150).
- Antispam
Cache doubleTtl - Time-to-live for antispam cache entries in seconds (300 - 86400). Lower times reduce the cache size. Higher times may improve performance since the cache will have more entries.
- Antispam
Expiration double - Antispam-Expiration.
- Antispam
Force stringOff - Enable/disable turning off the FortiGuard antispam service. Valid values:
disable
,enable
. - Antispam
License double - Antispam-License.
- Antispam
Timeout double - Antispam query time out (1 - 30 sec, default = 7).
- Anycast
Sdns stringServer Ip - IP address of the FortiGuard anycast DNS rating server.
- Anycast
Sdns doubleServer Port - Port to connect to on the FortiGuard anycast DNS rating server.
- Auto
Firmware stringUpgrade - Enable/disable automatic patch-level firmware upgrade from FortiGuard. The FortiGate unit searches for new patches only in the same major and minor version. Valid values:
disable
,enable
. - Auto
Firmware List<string>Upgrade Days - Allowed day(s) of the week to start automatic patch-level firmware upgrade from FortiGuard. Valid values:
sunday
,monday
,tuesday
,wednesday
,thursday
,friday
,saturday
. - Auto
Firmware doubleUpgrade Delay - Delay of day(s) before installing an automatic patch-level firmware upgrade from FortiGuard (default = 3). Set it 0 to use auto-firmware-upgrade-day instead, which selects allowed day(s) of the week for installing an automatic patch-level firmware upgrade.
- Auto
Firmware doubleUpgrade End Hour - End time in the designated time window for automatic patch-level firmware upgrade from FortiGuard in 24 hour time (0 ~ 23, default = 4). When the end time is smaller than the start time, the end time is interpreted as the next day. The actual upgrade time is selected randomly within the time window.
- Auto
Firmware doubleUpgrade Start Hour - Start time in the designated time window for automatic patch-level firmware upgrade from FortiGuard in 24 hour time (0 ~ 23, default = 2). The actual upgrade time is selected randomly within the time window.
- Auto
Join stringForticloud - Automatically connect to and login to FortiCloud. Valid values:
disable
,enable
. - Ddns
Server stringIp - IP address of the FortiDDNS server.
- Ddns
Server stringIp6 - IPv6 address of the FortiDDNS server.
- Ddns
Server doublePort - Port used to communicate with FortiDDNS servers.
- Fds
License doubleExpiring Days - Threshold for number of days before FortiGuard license expiration to generate license expiring event log (1 - 100 days, default = 15).
- Fortiguard
Anycast string - Enable/disable use of FortiGuard's anycast network. Valid values:
disable
,enable
. - Fortiguard
Anycast stringSource - Configure which of Fortinet's servers to provide FortiGuard services in FortiGuard's anycast network. Default is Fortinet. Valid values:
fortinet
,aws
,debug
. - Gui
Prompt stringAuto Upgrade - Enable/disable prompting of automatic patch-level firmware upgrade recommendation. Valid values:
disable
,enable
. - Interface string
- Specify outgoing interface to reach server.
- Interface
Select stringMethod - Specify how to select outgoing interface to reach server. Valid values:
auto
,sdwan
,specify
. - Load
Balance doubleServers - Number of servers to alternate between as first FortiGuard option.
- Object
System stringFortiguard Id - an identifier for the resource.
- Outbreak
Prevention stringCache - Enable/disable FortiGuard Virus Outbreak Prevention cache. Valid values:
disable
,enable
. - Outbreak
Prevention doubleCache Mpercent - Maximum percent of memory FortiGuard Virus Outbreak Prevention cache can use (1 - 15%, default = 2).
- Outbreak
Prevention doubleCache Mpermille - Maximum permille of memory FortiGuard Virus Outbreak Prevention cache can use (1 - 150 permille, default = 1).
- Outbreak
Prevention doubleCache Ttl - Time-to-live for FortiGuard Virus Outbreak Prevention cache entries (300 - 86400 sec, default = 300).
- Outbreak
Prevention doubleExpiration - Outbreak-Prevention-Expiration.
- Outbreak
Prevention stringForce Off - Turn off FortiGuard Virus Outbreak Prevention service. Valid values:
disable
,enable
. - Outbreak
Prevention doubleLicense - Outbreak-Prevention-License.
- Outbreak
Prevention doubleTimeout - FortiGuard Virus Outbreak Prevention time out (1 - 30 sec, default = 7).
- Persistent
Connection string - Enable/disable use of persistent connection to receive update notification from FortiGuard. Valid values:
disable
,enable
. - Port string
- Port used to communicate with the FortiGuard servers. Valid values:
53
,80
,443
,8888
. - Protocol string
- Protocol used to communicate with the FortiGuard servers. Valid values:
udp
,http
,https
. - Proxy
Passwords List<string> - Proxy user password.
- Proxy
Server stringIp - IP address of the proxy server.
- Proxy
Server doublePort - Port used to communicate with the proxy server.
- Proxy
Username string - Proxy user name.
- Sandbox
Inline stringScan - Enable/disable FortiCloud Sandbox inline-scan. Valid values:
disable
,enable
. - Sandbox
Region string - Cloud sandbox region.
- 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
. - Sdns
Options List<string> - Customization options for the FortiGuard DNS service. Valid values:
include-question-section
. - Sdns
Server List<string>Ips - IP address of the FortiDNS server.
- Sdns
Server doublePort - Port used to communicate with FortiDNS servers.
- Service
Account stringId - Service account ID.
- Source
Ip string - Source IPv4 address used to communicate with FortiGuard.
- Source
Ip6 string - Source IPv6 address used to communicate with FortiGuard.
- Update
Build stringProxy - Enable/disable proxy dictionary rebuild. Valid values:
disable
,enable
. - Update
Dldb string - Enable/disable DLP signature update. Valid values:
disable
,enable
. - Update
Extdb string - Enable/disable external resource update. Valid values:
disable
,enable
. - Update
Ffdb string - Enable/disable Internet Service Database update. Valid values:
disable
,enable
. - Update
Server stringLocation - Signature update server location. Valid values:
any
,usa
. - Update
Uwdb string - Enable/disable allowlist update. Valid values:
disable
,enable
. - Vdom string
- FortiGuard Service virtual domain name.
- Videofilter
Expiration double - Videofilter-Expiration.
- Videofilter
License double - Videofilter-License.
- Webfilter
Cache string - Enable/disable FortiGuard web filter caching. Valid values:
disable
,enable
. - Webfilter
Cache doubleTtl - Time-to-live for web filter cache entries in seconds (300 - 86400).
- Webfilter
Expiration double - Webfilter-Expiration.
- Webfilter
Force stringOff - Enable/disable turning off the FortiGuard web filtering service. Valid values:
disable
,enable
. - Webfilter
License double - Webfilter-License.
- Webfilter
Timeout double - Web filter query time out (1 - 30 sec, default = 7).
- Adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - Antispam
Cache string - Enable/disable FortiGuard antispam request caching. Uses a small amount of memory but improves performance. Valid values:
disable
,enable
. - Antispam
Cache float64Mpercent - Maximum percent of FortiGate memory the antispam cache is allowed to use (1 - 15%).
- Antispam
Cache float64Mpermille - Maximum permille of FortiGate memory the antispam cache is allowed to use (1 - 150).
- Antispam
Cache float64Ttl - Time-to-live for antispam cache entries in seconds (300 - 86400). Lower times reduce the cache size. Higher times may improve performance since the cache will have more entries.
- Antispam
Expiration float64 - Antispam-Expiration.
- Antispam
Force stringOff - Enable/disable turning off the FortiGuard antispam service. Valid values:
disable
,enable
. - Antispam
License float64 - Antispam-License.
- Antispam
Timeout float64 - Antispam query time out (1 - 30 sec, default = 7).
- Anycast
Sdns stringServer Ip - IP address of the FortiGuard anycast DNS rating server.
- Anycast
Sdns float64Server Port - Port to connect to on the FortiGuard anycast DNS rating server.
- Auto
Firmware stringUpgrade - Enable/disable automatic patch-level firmware upgrade from FortiGuard. The FortiGate unit searches for new patches only in the same major and minor version. Valid values:
disable
,enable
. - Auto
Firmware []stringUpgrade Days - Allowed day(s) of the week to start automatic patch-level firmware upgrade from FortiGuard. Valid values:
sunday
,monday
,tuesday
,wednesday
,thursday
,friday
,saturday
. - Auto
Firmware float64Upgrade Delay - Delay of day(s) before installing an automatic patch-level firmware upgrade from FortiGuard (default = 3). Set it 0 to use auto-firmware-upgrade-day instead, which selects allowed day(s) of the week for installing an automatic patch-level firmware upgrade.
- Auto
Firmware float64Upgrade End Hour - End time in the designated time window for automatic patch-level firmware upgrade from FortiGuard in 24 hour time (0 ~ 23, default = 4). When the end time is smaller than the start time, the end time is interpreted as the next day. The actual upgrade time is selected randomly within the time window.
- Auto
Firmware float64Upgrade Start Hour - Start time in the designated time window for automatic patch-level firmware upgrade from FortiGuard in 24 hour time (0 ~ 23, default = 2). The actual upgrade time is selected randomly within the time window.
- Auto
Join stringForticloud - Automatically connect to and login to FortiCloud. Valid values:
disable
,enable
. - Ddns
Server stringIp - IP address of the FortiDDNS server.
- Ddns
Server stringIp6 - IPv6 address of the FortiDDNS server.
- Ddns
Server float64Port - Port used to communicate with FortiDDNS servers.
- Fds
License float64Expiring Days - Threshold for number of days before FortiGuard license expiration to generate license expiring event log (1 - 100 days, default = 15).
- Fortiguard
Anycast string - Enable/disable use of FortiGuard's anycast network. Valid values:
disable
,enable
. - Fortiguard
Anycast stringSource - Configure which of Fortinet's servers to provide FortiGuard services in FortiGuard's anycast network. Default is Fortinet. Valid values:
fortinet
,aws
,debug
. - Gui
Prompt stringAuto Upgrade - Enable/disable prompting of automatic patch-level firmware upgrade recommendation. Valid values:
disable
,enable
. - Interface string
- Specify outgoing interface to reach server.
- Interface
Select stringMethod - Specify how to select outgoing interface to reach server. Valid values:
auto
,sdwan
,specify
. - Load
Balance float64Servers - Number of servers to alternate between as first FortiGuard option.
- Object
System stringFortiguard Id - an identifier for the resource.
- Outbreak
Prevention stringCache - Enable/disable FortiGuard Virus Outbreak Prevention cache. Valid values:
disable
,enable
. - Outbreak
Prevention float64Cache Mpercent - Maximum percent of memory FortiGuard Virus Outbreak Prevention cache can use (1 - 15%, default = 2).
- Outbreak
Prevention float64Cache Mpermille - Maximum permille of memory FortiGuard Virus Outbreak Prevention cache can use (1 - 150 permille, default = 1).
- Outbreak
Prevention float64Cache Ttl - Time-to-live for FortiGuard Virus Outbreak Prevention cache entries (300 - 86400 sec, default = 300).
- Outbreak
Prevention float64Expiration - Outbreak-Prevention-Expiration.
- Outbreak
Prevention stringForce Off - Turn off FortiGuard Virus Outbreak Prevention service. Valid values:
disable
,enable
. - Outbreak
Prevention float64License - Outbreak-Prevention-License.
- Outbreak
Prevention float64Timeout - FortiGuard Virus Outbreak Prevention time out (1 - 30 sec, default = 7).
- Persistent
Connection string - Enable/disable use of persistent connection to receive update notification from FortiGuard. Valid values:
disable
,enable
. - Port string
- Port used to communicate with the FortiGuard servers. Valid values:
53
,80
,443
,8888
. - Protocol string
- Protocol used to communicate with the FortiGuard servers. Valid values:
udp
,http
,https
. - Proxy
Passwords []string - Proxy user password.
- Proxy
Server stringIp - IP address of the proxy server.
- Proxy
Server float64Port - Port used to communicate with the proxy server.
- Proxy
Username string - Proxy user name.
- Sandbox
Inline stringScan - Enable/disable FortiCloud Sandbox inline-scan. Valid values:
disable
,enable
. - Sandbox
Region string - Cloud sandbox region.
- 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
. - Sdns
Options []string - Customization options for the FortiGuard DNS service. Valid values:
include-question-section
. - Sdns
Server []stringIps - IP address of the FortiDNS server.
- Sdns
Server float64Port - Port used to communicate with FortiDNS servers.
- Service
Account stringId - Service account ID.
- Source
Ip string - Source IPv4 address used to communicate with FortiGuard.
- Source
Ip6 string - Source IPv6 address used to communicate with FortiGuard.
- Update
Build stringProxy - Enable/disable proxy dictionary rebuild. Valid values:
disable
,enable
. - Update
Dldb string - Enable/disable DLP signature update. Valid values:
disable
,enable
. - Update
Extdb string - Enable/disable external resource update. Valid values:
disable
,enable
. - Update
Ffdb string - Enable/disable Internet Service Database update. Valid values:
disable
,enable
. - Update
Server stringLocation - Signature update server location. Valid values:
any
,usa
. - Update
Uwdb string - Enable/disable allowlist update. Valid values:
disable
,enable
. - Vdom string
- FortiGuard Service virtual domain name.
- Videofilter
Expiration float64 - Videofilter-Expiration.
- Videofilter
License float64 - Videofilter-License.
- Webfilter
Cache string - Enable/disable FortiGuard web filter caching. Valid values:
disable
,enable
. - Webfilter
Cache float64Ttl - Time-to-live for web filter cache entries in seconds (300 - 86400).
- Webfilter
Expiration float64 - Webfilter-Expiration.
- Webfilter
Force stringOff - Enable/disable turning off the FortiGuard web filtering service. Valid values:
disable
,enable
. - Webfilter
License float64 - Webfilter-License.
- Webfilter
Timeout float64 - Web filter query time out (1 - 30 sec, default = 7).
- adom String
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - antispam
Cache String - Enable/disable FortiGuard antispam request caching. Uses a small amount of memory but improves performance. Valid values:
disable
,enable
. - antispam
Cache DoubleMpercent - Maximum percent of FortiGate memory the antispam cache is allowed to use (1 - 15%).
- antispam
Cache DoubleMpermille - Maximum permille of FortiGate memory the antispam cache is allowed to use (1 - 150).
- antispam
Cache DoubleTtl - Time-to-live for antispam cache entries in seconds (300 - 86400). Lower times reduce the cache size. Higher times may improve performance since the cache will have more entries.
- antispam
Expiration Double - Antispam-Expiration.
- antispam
Force StringOff - Enable/disable turning off the FortiGuard antispam service. Valid values:
disable
,enable
. - antispam
License Double - Antispam-License.
- antispam
Timeout Double - Antispam query time out (1 - 30 sec, default = 7).
- anycast
Sdns StringServer Ip - IP address of the FortiGuard anycast DNS rating server.
- anycast
Sdns DoubleServer Port - Port to connect to on the FortiGuard anycast DNS rating server.
- auto
Firmware StringUpgrade - Enable/disable automatic patch-level firmware upgrade from FortiGuard. The FortiGate unit searches for new patches only in the same major and minor version. Valid values:
disable
,enable
. - auto
Firmware List<String>Upgrade Days - Allowed day(s) of the week to start automatic patch-level firmware upgrade from FortiGuard. Valid values:
sunday
,monday
,tuesday
,wednesday
,thursday
,friday
,saturday
. - auto
Firmware DoubleUpgrade Delay - Delay of day(s) before installing an automatic patch-level firmware upgrade from FortiGuard (default = 3). Set it 0 to use auto-firmware-upgrade-day instead, which selects allowed day(s) of the week for installing an automatic patch-level firmware upgrade.
- auto
Firmware DoubleUpgrade End Hour - End time in the designated time window for automatic patch-level firmware upgrade from FortiGuard in 24 hour time (0 ~ 23, default = 4). When the end time is smaller than the start time, the end time is interpreted as the next day. The actual upgrade time is selected randomly within the time window.
- auto
Firmware DoubleUpgrade Start Hour - Start time in the designated time window for automatic patch-level firmware upgrade from FortiGuard in 24 hour time (0 ~ 23, default = 2). The actual upgrade time is selected randomly within the time window.
- auto
Join StringForticloud - Automatically connect to and login to FortiCloud. Valid values:
disable
,enable
. - ddns
Server StringIp - IP address of the FortiDDNS server.
- ddns
Server StringIp6 - IPv6 address of the FortiDDNS server.
- ddns
Server DoublePort - Port used to communicate with FortiDDNS servers.
- fds
License DoubleExpiring Days - Threshold for number of days before FortiGuard license expiration to generate license expiring event log (1 - 100 days, default = 15).
- fortiguard
Anycast String - Enable/disable use of FortiGuard's anycast network. Valid values:
disable
,enable
. - fortiguard
Anycast StringSource - Configure which of Fortinet's servers to provide FortiGuard services in FortiGuard's anycast network. Default is Fortinet. Valid values:
fortinet
,aws
,debug
. - gui
Prompt StringAuto Upgrade - Enable/disable prompting of automatic patch-level firmware upgrade recommendation. Valid values:
disable
,enable
. - interface
Select StringMethod - Specify how to select outgoing interface to reach server. Valid values:
auto
,sdwan
,specify
. - interface_ String
- Specify outgoing interface to reach server.
- load
Balance DoubleServers - Number of servers to alternate between as first FortiGuard option.
- object
System StringFortiguard Id - an identifier for the resource.
- outbreak
Prevention StringCache - Enable/disable FortiGuard Virus Outbreak Prevention cache. Valid values:
disable
,enable
. - outbreak
Prevention DoubleCache Mpercent - Maximum percent of memory FortiGuard Virus Outbreak Prevention cache can use (1 - 15%, default = 2).
- outbreak
Prevention DoubleCache Mpermille - Maximum permille of memory FortiGuard Virus Outbreak Prevention cache can use (1 - 150 permille, default = 1).
- outbreak
Prevention DoubleCache Ttl - Time-to-live for FortiGuard Virus Outbreak Prevention cache entries (300 - 86400 sec, default = 300).
- outbreak
Prevention DoubleExpiration - Outbreak-Prevention-Expiration.
- outbreak
Prevention StringForce Off - Turn off FortiGuard Virus Outbreak Prevention service. Valid values:
disable
,enable
. - outbreak
Prevention DoubleLicense - Outbreak-Prevention-License.
- outbreak
Prevention DoubleTimeout - FortiGuard Virus Outbreak Prevention time out (1 - 30 sec, default = 7).
- persistent
Connection String - Enable/disable use of persistent connection to receive update notification from FortiGuard. Valid values:
disable
,enable
. - port String
- Port used to communicate with the FortiGuard servers. Valid values:
53
,80
,443
,8888
. - protocol String
- Protocol used to communicate with the FortiGuard servers. Valid values:
udp
,http
,https
. - proxy
Passwords List<String> - Proxy user password.
- proxy
Server StringIp - IP address of the proxy server.
- proxy
Server DoublePort - Port used to communicate with the proxy server.
- proxy
Username String - Proxy user name.
- sandbox
Inline StringScan - Enable/disable FortiCloud Sandbox inline-scan. Valid values:
disable
,enable
. - sandbox
Region String - Cloud sandbox region.
- 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
. - sdns
Options List<String> - Customization options for the FortiGuard DNS service. Valid values:
include-question-section
. - sdns
Server List<String>Ips - IP address of the FortiDNS server.
- sdns
Server DoublePort - Port used to communicate with FortiDNS servers.
- service
Account StringId - Service account ID.
- source
Ip String - Source IPv4 address used to communicate with FortiGuard.
- source
Ip6 String - Source IPv6 address used to communicate with FortiGuard.
- update
Build StringProxy - Enable/disable proxy dictionary rebuild. Valid values:
disable
,enable
. - update
Dldb String - Enable/disable DLP signature update. Valid values:
disable
,enable
. - update
Extdb String - Enable/disable external resource update. Valid values:
disable
,enable
. - update
Ffdb String - Enable/disable Internet Service Database update. Valid values:
disable
,enable
. - update
Server StringLocation - Signature update server location. Valid values:
any
,usa
. - update
Uwdb String - Enable/disable allowlist update. Valid values:
disable
,enable
. - vdom String
- FortiGuard Service virtual domain name.
- videofilter
Expiration Double - Videofilter-Expiration.
- videofilter
License Double - Videofilter-License.
- webfilter
Cache String - Enable/disable FortiGuard web filter caching. Valid values:
disable
,enable
. - webfilter
Cache DoubleTtl - Time-to-live for web filter cache entries in seconds (300 - 86400).
- webfilter
Expiration Double - Webfilter-Expiration.
- webfilter
Force StringOff - Enable/disable turning off the FortiGuard web filtering service. Valid values:
disable
,enable
. - webfilter
License Double - Webfilter-License.
- webfilter
Timeout Double - Web filter query time out (1 - 30 sec, default = 7).
- adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - antispam
Cache string - Enable/disable FortiGuard antispam request caching. Uses a small amount of memory but improves performance. Valid values:
disable
,enable
. - antispam
Cache numberMpercent - Maximum percent of FortiGate memory the antispam cache is allowed to use (1 - 15%).
- antispam
Cache numberMpermille - Maximum permille of FortiGate memory the antispam cache is allowed to use (1 - 150).
- antispam
Cache numberTtl - Time-to-live for antispam cache entries in seconds (300 - 86400). Lower times reduce the cache size. Higher times may improve performance since the cache will have more entries.
- antispam
Expiration number - Antispam-Expiration.
- antispam
Force stringOff - Enable/disable turning off the FortiGuard antispam service. Valid values:
disable
,enable
. - antispam
License number - Antispam-License.
- antispam
Timeout number - Antispam query time out (1 - 30 sec, default = 7).
- anycast
Sdns stringServer Ip - IP address of the FortiGuard anycast DNS rating server.
- anycast
Sdns numberServer Port - Port to connect to on the FortiGuard anycast DNS rating server.
- auto
Firmware stringUpgrade - Enable/disable automatic patch-level firmware upgrade from FortiGuard. The FortiGate unit searches for new patches only in the same major and minor version. Valid values:
disable
,enable
. - auto
Firmware string[]Upgrade Days - Allowed day(s) of the week to start automatic patch-level firmware upgrade from FortiGuard. Valid values:
sunday
,monday
,tuesday
,wednesday
,thursday
,friday
,saturday
. - auto
Firmware numberUpgrade Delay - Delay of day(s) before installing an automatic patch-level firmware upgrade from FortiGuard (default = 3). Set it 0 to use auto-firmware-upgrade-day instead, which selects allowed day(s) of the week for installing an automatic patch-level firmware upgrade.
- auto
Firmware numberUpgrade End Hour - End time in the designated time window for automatic patch-level firmware upgrade from FortiGuard in 24 hour time (0 ~ 23, default = 4). When the end time is smaller than the start time, the end time is interpreted as the next day. The actual upgrade time is selected randomly within the time window.
- auto
Firmware numberUpgrade Start Hour - Start time in the designated time window for automatic patch-level firmware upgrade from FortiGuard in 24 hour time (0 ~ 23, default = 2). The actual upgrade time is selected randomly within the time window.
- auto
Join stringForticloud - Automatically connect to and login to FortiCloud. Valid values:
disable
,enable
. - ddns
Server stringIp - IP address of the FortiDDNS server.
- ddns
Server stringIp6 - IPv6 address of the FortiDDNS server.
- ddns
Server numberPort - Port used to communicate with FortiDDNS servers.
- fds
License numberExpiring Days - Threshold for number of days before FortiGuard license expiration to generate license expiring event log (1 - 100 days, default = 15).
- fortiguard
Anycast string - Enable/disable use of FortiGuard's anycast network. Valid values:
disable
,enable
. - fortiguard
Anycast stringSource - Configure which of Fortinet's servers to provide FortiGuard services in FortiGuard's anycast network. Default is Fortinet. Valid values:
fortinet
,aws
,debug
. - gui
Prompt stringAuto Upgrade - Enable/disable prompting of automatic patch-level firmware upgrade recommendation. Valid values:
disable
,enable
. - interface string
- Specify outgoing interface to reach server.
- interface
Select stringMethod - Specify how to select outgoing interface to reach server. Valid values:
auto
,sdwan
,specify
. - load
Balance numberServers - Number of servers to alternate between as first FortiGuard option.
- object
System stringFortiguard Id - an identifier for the resource.
- outbreak
Prevention stringCache - Enable/disable FortiGuard Virus Outbreak Prevention cache. Valid values:
disable
,enable
. - outbreak
Prevention numberCache Mpercent - Maximum percent of memory FortiGuard Virus Outbreak Prevention cache can use (1 - 15%, default = 2).
- outbreak
Prevention numberCache Mpermille - Maximum permille of memory FortiGuard Virus Outbreak Prevention cache can use (1 - 150 permille, default = 1).
- outbreak
Prevention numberCache Ttl - Time-to-live for FortiGuard Virus Outbreak Prevention cache entries (300 - 86400 sec, default = 300).
- outbreak
Prevention numberExpiration - Outbreak-Prevention-Expiration.
- outbreak
Prevention stringForce Off - Turn off FortiGuard Virus Outbreak Prevention service. Valid values:
disable
,enable
. - outbreak
Prevention numberLicense - Outbreak-Prevention-License.
- outbreak
Prevention numberTimeout - FortiGuard Virus Outbreak Prevention time out (1 - 30 sec, default = 7).
- persistent
Connection string - Enable/disable use of persistent connection to receive update notification from FortiGuard. Valid values:
disable
,enable
. - port string
- Port used to communicate with the FortiGuard servers. Valid values:
53
,80
,443
,8888
. - protocol string
- Protocol used to communicate with the FortiGuard servers. Valid values:
udp
,http
,https
. - proxy
Passwords string[] - Proxy user password.
- proxy
Server stringIp - IP address of the proxy server.
- proxy
Server numberPort - Port used to communicate with the proxy server.
- proxy
Username string - Proxy user name.
- sandbox
Inline stringScan - Enable/disable FortiCloud Sandbox inline-scan. Valid values:
disable
,enable
. - sandbox
Region string - Cloud sandbox region.
- 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
. - sdns
Options string[] - Customization options for the FortiGuard DNS service. Valid values:
include-question-section
. - sdns
Server string[]Ips - IP address of the FortiDNS server.
- sdns
Server numberPort - Port used to communicate with FortiDNS servers.
- service
Account stringId - Service account ID.
- source
Ip string - Source IPv4 address used to communicate with FortiGuard.
- source
Ip6 string - Source IPv6 address used to communicate with FortiGuard.
- update
Build stringProxy - Enable/disable proxy dictionary rebuild. Valid values:
disable
,enable
. - update
Dldb string - Enable/disable DLP signature update. Valid values:
disable
,enable
. - update
Extdb string - Enable/disable external resource update. Valid values:
disable
,enable
. - update
Ffdb string - Enable/disable Internet Service Database update. Valid values:
disable
,enable
. - update
Server stringLocation - Signature update server location. Valid values:
any
,usa
. - update
Uwdb string - Enable/disable allowlist update. Valid values:
disable
,enable
. - vdom string
- FortiGuard Service virtual domain name.
- videofilter
Expiration number - Videofilter-Expiration.
- videofilter
License number - Videofilter-License.
- webfilter
Cache string - Enable/disable FortiGuard web filter caching. Valid values:
disable
,enable
. - webfilter
Cache numberTtl - Time-to-live for web filter cache entries in seconds (300 - 86400).
- webfilter
Expiration number - Webfilter-Expiration.
- webfilter
Force stringOff - Enable/disable turning off the FortiGuard web filtering service. Valid values:
disable
,enable
. - webfilter
License number - Webfilter-License.
- webfilter
Timeout number - Web filter query time out (1 - 30 sec, default = 7).
- adom str
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - antispam_
cache str - Enable/disable FortiGuard antispam request caching. Uses a small amount of memory but improves performance. Valid values:
disable
,enable
. - antispam_
cache_ floatmpercent - Maximum percent of FortiGate memory the antispam cache is allowed to use (1 - 15%).
- antispam_
cache_ floatmpermille - Maximum permille of FortiGate memory the antispam cache is allowed to use (1 - 150).
- antispam_
cache_ floatttl - Time-to-live for antispam cache entries in seconds (300 - 86400). Lower times reduce the cache size. Higher times may improve performance since the cache will have more entries.
- antispam_
expiration float - Antispam-Expiration.
- antispam_
force_ stroff - Enable/disable turning off the FortiGuard antispam service. Valid values:
disable
,enable
. - antispam_
license float - Antispam-License.
- antispam_
timeout float - Antispam query time out (1 - 30 sec, default = 7).
- anycast_
sdns_ strserver_ ip - IP address of the FortiGuard anycast DNS rating server.
- anycast_
sdns_ floatserver_ port - Port to connect to on the FortiGuard anycast DNS rating server.
- auto_
firmware_ strupgrade - Enable/disable automatic patch-level firmware upgrade from FortiGuard. The FortiGate unit searches for new patches only in the same major and minor version. Valid values:
disable
,enable
. - auto_
firmware_ Sequence[str]upgrade_ days - Allowed day(s) of the week to start automatic patch-level firmware upgrade from FortiGuard. Valid values:
sunday
,monday
,tuesday
,wednesday
,thursday
,friday
,saturday
. - auto_
firmware_ floatupgrade_ delay - Delay of day(s) before installing an automatic patch-level firmware upgrade from FortiGuard (default = 3). Set it 0 to use auto-firmware-upgrade-day instead, which selects allowed day(s) of the week for installing an automatic patch-level firmware upgrade.
- auto_
firmware_ floatupgrade_ end_ hour - End time in the designated time window for automatic patch-level firmware upgrade from FortiGuard in 24 hour time (0 ~ 23, default = 4). When the end time is smaller than the start time, the end time is interpreted as the next day. The actual upgrade time is selected randomly within the time window.
- auto_
firmware_ floatupgrade_ start_ hour - Start time in the designated time window for automatic patch-level firmware upgrade from FortiGuard in 24 hour time (0 ~ 23, default = 2). The actual upgrade time is selected randomly within the time window.
- auto_
join_ strforticloud - Automatically connect to and login to FortiCloud. Valid values:
disable
,enable
. - ddns_
server_ strip - IP address of the FortiDDNS server.
- ddns_
server_ strip6 - IPv6 address of the FortiDDNS server.
- ddns_
server_ floatport - Port used to communicate with FortiDDNS servers.
- fds_
license_ floatexpiring_ days - Threshold for number of days before FortiGuard license expiration to generate license expiring event log (1 - 100 days, default = 15).
- fortiguard_
anycast str - Enable/disable use of FortiGuard's anycast network. Valid values:
disable
,enable
. - fortiguard_
anycast_ strsource - Configure which of Fortinet's servers to provide FortiGuard services in FortiGuard's anycast network. Default is Fortinet. Valid values:
fortinet
,aws
,debug
. - gui_
prompt_ strauto_ upgrade - Enable/disable prompting of automatic patch-level firmware upgrade recommendation. Valid values:
disable
,enable
. - interface str
- Specify outgoing interface to reach server.
- interface_
select_ strmethod - Specify how to select outgoing interface to reach server. Valid values:
auto
,sdwan
,specify
. - load_
balance_ floatservers - Number of servers to alternate between as first FortiGuard option.
- object_
system_ strfortiguard_ id - an identifier for the resource.
- outbreak_
prevention_ strcache - Enable/disable FortiGuard Virus Outbreak Prevention cache. Valid values:
disable
,enable
. - outbreak_
prevention_ floatcache_ mpercent - Maximum percent of memory FortiGuard Virus Outbreak Prevention cache can use (1 - 15%, default = 2).
- outbreak_
prevention_ floatcache_ mpermille - Maximum permille of memory FortiGuard Virus Outbreak Prevention cache can use (1 - 150 permille, default = 1).
- outbreak_
prevention_ floatcache_ ttl - Time-to-live for FortiGuard Virus Outbreak Prevention cache entries (300 - 86400 sec, default = 300).
- outbreak_
prevention_ floatexpiration - Outbreak-Prevention-Expiration.
- outbreak_
prevention_ strforce_ off - Turn off FortiGuard Virus Outbreak Prevention service. Valid values:
disable
,enable
. - outbreak_
prevention_ floatlicense - Outbreak-Prevention-License.
- outbreak_
prevention_ floattimeout - FortiGuard Virus Outbreak Prevention time out (1 - 30 sec, default = 7).
- persistent_
connection str - Enable/disable use of persistent connection to receive update notification from FortiGuard. Valid values:
disable
,enable
. - port str
- Port used to communicate with the FortiGuard servers. Valid values:
53
,80
,443
,8888
. - protocol str
- Protocol used to communicate with the FortiGuard servers. Valid values:
udp
,http
,https
. - proxy_
passwords Sequence[str] - Proxy user password.
- proxy_
server_ strip - IP address of the proxy server.
- proxy_
server_ floatport - Port used to communicate with the proxy server.
- proxy_
username str - Proxy user name.
- sandbox_
inline_ strscan - Enable/disable FortiCloud Sandbox inline-scan. Valid values:
disable
,enable
. - sandbox_
region str - Cloud sandbox region.
- 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
. - sdns_
options Sequence[str] - Customization options for the FortiGuard DNS service. Valid values:
include-question-section
. - sdns_
server_ Sequence[str]ips - IP address of the FortiDNS server.
- sdns_
server_ floatport - Port used to communicate with FortiDNS servers.
- service_
account_ strid - Service account ID.
- source_
ip str - Source IPv4 address used to communicate with FortiGuard.
- source_
ip6 str - Source IPv6 address used to communicate with FortiGuard.
- update_
build_ strproxy - Enable/disable proxy dictionary rebuild. Valid values:
disable
,enable
. - update_
dldb str - Enable/disable DLP signature update. Valid values:
disable
,enable
. - update_
extdb str - Enable/disable external resource update. Valid values:
disable
,enable
. - update_
ffdb str - Enable/disable Internet Service Database update. Valid values:
disable
,enable
. - update_
server_ strlocation - Signature update server location. Valid values:
any
,usa
. - update_
uwdb str - Enable/disable allowlist update. Valid values:
disable
,enable
. - vdom str
- FortiGuard Service virtual domain name.
- videofilter_
expiration float - Videofilter-Expiration.
- videofilter_
license float - Videofilter-License.
- webfilter_
cache str - Enable/disable FortiGuard web filter caching. Valid values:
disable
,enable
. - webfilter_
cache_ floatttl - Time-to-live for web filter cache entries in seconds (300 - 86400).
- webfilter_
expiration float - Webfilter-Expiration.
- webfilter_
force_ stroff - Enable/disable turning off the FortiGuard web filtering service. Valid values:
disable
,enable
. - webfilter_
license float - Webfilter-License.
- webfilter_
timeout float - Web filter query time out (1 - 30 sec, default = 7).
- adom String
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - antispam
Cache String - Enable/disable FortiGuard antispam request caching. Uses a small amount of memory but improves performance. Valid values:
disable
,enable
. - antispam
Cache NumberMpercent - Maximum percent of FortiGate memory the antispam cache is allowed to use (1 - 15%).
- antispam
Cache NumberMpermille - Maximum permille of FortiGate memory the antispam cache is allowed to use (1 - 150).
- antispam
Cache NumberTtl - Time-to-live for antispam cache entries in seconds (300 - 86400). Lower times reduce the cache size. Higher times may improve performance since the cache will have more entries.
- antispam
Expiration Number - Antispam-Expiration.
- antispam
Force StringOff - Enable/disable turning off the FortiGuard antispam service. Valid values:
disable
,enable
. - antispam
License Number - Antispam-License.
- antispam
Timeout Number - Antispam query time out (1 - 30 sec, default = 7).
- anycast
Sdns StringServer Ip - IP address of the FortiGuard anycast DNS rating server.
- anycast
Sdns NumberServer Port - Port to connect to on the FortiGuard anycast DNS rating server.
- auto
Firmware StringUpgrade - Enable/disable automatic patch-level firmware upgrade from FortiGuard. The FortiGate unit searches for new patches only in the same major and minor version. Valid values:
disable
,enable
. - auto
Firmware List<String>Upgrade Days - Allowed day(s) of the week to start automatic patch-level firmware upgrade from FortiGuard. Valid values:
sunday
,monday
,tuesday
,wednesday
,thursday
,friday
,saturday
. - auto
Firmware NumberUpgrade Delay - Delay of day(s) before installing an automatic patch-level firmware upgrade from FortiGuard (default = 3). Set it 0 to use auto-firmware-upgrade-day instead, which selects allowed day(s) of the week for installing an automatic patch-level firmware upgrade.
- auto
Firmware NumberUpgrade End Hour - End time in the designated time window for automatic patch-level firmware upgrade from FortiGuard in 24 hour time (0 ~ 23, default = 4). When the end time is smaller than the start time, the end time is interpreted as the next day. The actual upgrade time is selected randomly within the time window.
- auto
Firmware NumberUpgrade Start Hour - Start time in the designated time window for automatic patch-level firmware upgrade from FortiGuard in 24 hour time (0 ~ 23, default = 2). The actual upgrade time is selected randomly within the time window.
- auto
Join StringForticloud - Automatically connect to and login to FortiCloud. Valid values:
disable
,enable
. - ddns
Server StringIp - IP address of the FortiDDNS server.
- ddns
Server StringIp6 - IPv6 address of the FortiDDNS server.
- ddns
Server NumberPort - Port used to communicate with FortiDDNS servers.
- fds
License NumberExpiring Days - Threshold for number of days before FortiGuard license expiration to generate license expiring event log (1 - 100 days, default = 15).
- fortiguard
Anycast String - Enable/disable use of FortiGuard's anycast network. Valid values:
disable
,enable
. - fortiguard
Anycast StringSource - Configure which of Fortinet's servers to provide FortiGuard services in FortiGuard's anycast network. Default is Fortinet. Valid values:
fortinet
,aws
,debug
. - gui
Prompt StringAuto Upgrade - Enable/disable prompting of automatic patch-level firmware upgrade recommendation. Valid values:
disable
,enable
. - interface String
- Specify outgoing interface to reach server.
- interface
Select StringMethod - Specify how to select outgoing interface to reach server. Valid values:
auto
,sdwan
,specify
. - load
Balance NumberServers - Number of servers to alternate between as first FortiGuard option.
- object
System StringFortiguard Id - an identifier for the resource.
- outbreak
Prevention StringCache - Enable/disable FortiGuard Virus Outbreak Prevention cache. Valid values:
disable
,enable
. - outbreak
Prevention NumberCache Mpercent - Maximum percent of memory FortiGuard Virus Outbreak Prevention cache can use (1 - 15%, default = 2).
- outbreak
Prevention NumberCache Mpermille - Maximum permille of memory FortiGuard Virus Outbreak Prevention cache can use (1 - 150 permille, default = 1).
- outbreak
Prevention NumberCache Ttl - Time-to-live for FortiGuard Virus Outbreak Prevention cache entries (300 - 86400 sec, default = 300).
- outbreak
Prevention NumberExpiration - Outbreak-Prevention-Expiration.
- outbreak
Prevention StringForce Off - Turn off FortiGuard Virus Outbreak Prevention service. Valid values:
disable
,enable
. - outbreak
Prevention NumberLicense - Outbreak-Prevention-License.
- outbreak
Prevention NumberTimeout - FortiGuard Virus Outbreak Prevention time out (1 - 30 sec, default = 7).
- persistent
Connection String - Enable/disable use of persistent connection to receive update notification from FortiGuard. Valid values:
disable
,enable
. - port String
- Port used to communicate with the FortiGuard servers. Valid values:
53
,80
,443
,8888
. - protocol String
- Protocol used to communicate with the FortiGuard servers. Valid values:
udp
,http
,https
. - proxy
Passwords List<String> - Proxy user password.
- proxy
Server StringIp - IP address of the proxy server.
- proxy
Server NumberPort - Port used to communicate with the proxy server.
- proxy
Username String - Proxy user name.
- sandbox
Inline StringScan - Enable/disable FortiCloud Sandbox inline-scan. Valid values:
disable
,enable
. - sandbox
Region String - Cloud sandbox region.
- 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
. - sdns
Options List<String> - Customization options for the FortiGuard DNS service. Valid values:
include-question-section
. - sdns
Server List<String>Ips - IP address of the FortiDNS server.
- sdns
Server NumberPort - Port used to communicate with FortiDNS servers.
- service
Account StringId - Service account ID.
- source
Ip String - Source IPv4 address used to communicate with FortiGuard.
- source
Ip6 String - Source IPv6 address used to communicate with FortiGuard.
- update
Build StringProxy - Enable/disable proxy dictionary rebuild. Valid values:
disable
,enable
. - update
Dldb String - Enable/disable DLP signature update. Valid values:
disable
,enable
. - update
Extdb String - Enable/disable external resource update. Valid values:
disable
,enable
. - update
Ffdb String - Enable/disable Internet Service Database update. Valid values:
disable
,enable
. - update
Server StringLocation - Signature update server location. Valid values:
any
,usa
. - update
Uwdb String - Enable/disable allowlist update. Valid values:
disable
,enable
. - vdom String
- FortiGuard Service virtual domain name.
- videofilter
Expiration Number - Videofilter-Expiration.
- videofilter
License Number - Videofilter-License.
- webfilter
Cache String - Enable/disable FortiGuard web filter caching. Valid values:
disable
,enable
. - webfilter
Cache NumberTtl - Time-to-live for web filter cache entries in seconds (300 - 86400).
- webfilter
Expiration Number - Webfilter-Expiration.
- webfilter
Force StringOff - Enable/disable turning off the FortiGuard web filtering service. Valid values:
disable
,enable
. - webfilter
License Number - Webfilter-License.
- webfilter
Timeout Number - Web filter query time out (1 - 30 sec, default = 7).
Outputs
All input properties are implicitly available as output properties. Additionally, the ObjectSystemFortiguard 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 ObjectSystemFortiguard Resource
Get an existing ObjectSystemFortiguard 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?: ObjectSystemFortiguardState, opts?: CustomResourceOptions): ObjectSystemFortiguard
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
adom: Optional[str] = None,
antispam_cache: Optional[str] = None,
antispam_cache_mpercent: Optional[float] = None,
antispam_cache_mpermille: Optional[float] = None,
antispam_cache_ttl: Optional[float] = None,
antispam_expiration: Optional[float] = None,
antispam_force_off: Optional[str] = None,
antispam_license: Optional[float] = None,
antispam_timeout: Optional[float] = None,
anycast_sdns_server_ip: Optional[str] = None,
anycast_sdns_server_port: Optional[float] = None,
auto_firmware_upgrade: Optional[str] = None,
auto_firmware_upgrade_days: Optional[Sequence[str]] = None,
auto_firmware_upgrade_delay: Optional[float] = None,
auto_firmware_upgrade_end_hour: Optional[float] = None,
auto_firmware_upgrade_start_hour: Optional[float] = None,
auto_join_forticloud: Optional[str] = None,
ddns_server_ip: Optional[str] = None,
ddns_server_ip6: Optional[str] = None,
ddns_server_port: Optional[float] = None,
fds_license_expiring_days: Optional[float] = None,
fortiguard_anycast: Optional[str] = None,
fortiguard_anycast_source: Optional[str] = None,
gui_prompt_auto_upgrade: Optional[str] = None,
interface: Optional[str] = None,
interface_select_method: Optional[str] = None,
load_balance_servers: Optional[float] = None,
object_system_fortiguard_id: Optional[str] = None,
outbreak_prevention_cache: Optional[str] = None,
outbreak_prevention_cache_mpercent: Optional[float] = None,
outbreak_prevention_cache_mpermille: Optional[float] = None,
outbreak_prevention_cache_ttl: Optional[float] = None,
outbreak_prevention_expiration: Optional[float] = None,
outbreak_prevention_force_off: Optional[str] = None,
outbreak_prevention_license: Optional[float] = None,
outbreak_prevention_timeout: Optional[float] = None,
persistent_connection: Optional[str] = None,
port: Optional[str] = None,
protocol: Optional[str] = None,
proxy_passwords: Optional[Sequence[str]] = None,
proxy_server_ip: Optional[str] = None,
proxy_server_port: Optional[float] = None,
proxy_username: Optional[str] = None,
sandbox_inline_scan: Optional[str] = None,
sandbox_region: Optional[str] = None,
scopetype: Optional[str] = None,
sdns_options: Optional[Sequence[str]] = None,
sdns_server_ips: Optional[Sequence[str]] = None,
sdns_server_port: Optional[float] = None,
service_account_id: Optional[str] = None,
source_ip: Optional[str] = None,
source_ip6: Optional[str] = None,
update_build_proxy: Optional[str] = None,
update_dldb: Optional[str] = None,
update_extdb: Optional[str] = None,
update_ffdb: Optional[str] = None,
update_server_location: Optional[str] = None,
update_uwdb: Optional[str] = None,
vdom: Optional[str] = None,
videofilter_expiration: Optional[float] = None,
videofilter_license: Optional[float] = None,
webfilter_cache: Optional[str] = None,
webfilter_cache_ttl: Optional[float] = None,
webfilter_expiration: Optional[float] = None,
webfilter_force_off: Optional[str] = None,
webfilter_license: Optional[float] = None,
webfilter_timeout: Optional[float] = None) -> ObjectSystemFortiguard
func GetObjectSystemFortiguard(ctx *Context, name string, id IDInput, state *ObjectSystemFortiguardState, opts ...ResourceOption) (*ObjectSystemFortiguard, error)
public static ObjectSystemFortiguard Get(string name, Input<string> id, ObjectSystemFortiguardState? state, CustomResourceOptions? opts = null)
public static ObjectSystemFortiguard get(String name, Output<String> id, ObjectSystemFortiguardState state, CustomResourceOptions options)
resources: _: type: fortimanager:ObjectSystemFortiguard 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.
- Adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - Antispam
Cache string - Enable/disable FortiGuard antispam request caching. Uses a small amount of memory but improves performance. Valid values:
disable
,enable
. - Antispam
Cache doubleMpercent - Maximum percent of FortiGate memory the antispam cache is allowed to use (1 - 15%).
- Antispam
Cache doubleMpermille - Maximum permille of FortiGate memory the antispam cache is allowed to use (1 - 150).
- Antispam
Cache doubleTtl - Time-to-live for antispam cache entries in seconds (300 - 86400). Lower times reduce the cache size. Higher times may improve performance since the cache will have more entries.
- Antispam
Expiration double - Antispam-Expiration.
- Antispam
Force stringOff - Enable/disable turning off the FortiGuard antispam service. Valid values:
disable
,enable
. - Antispam
License double - Antispam-License.
- Antispam
Timeout double - Antispam query time out (1 - 30 sec, default = 7).
- Anycast
Sdns stringServer Ip - IP address of the FortiGuard anycast DNS rating server.
- Anycast
Sdns doubleServer Port - Port to connect to on the FortiGuard anycast DNS rating server.
- Auto
Firmware stringUpgrade - Enable/disable automatic patch-level firmware upgrade from FortiGuard. The FortiGate unit searches for new patches only in the same major and minor version. Valid values:
disable
,enable
. - Auto
Firmware List<string>Upgrade Days - Allowed day(s) of the week to start automatic patch-level firmware upgrade from FortiGuard. Valid values:
sunday
,monday
,tuesday
,wednesday
,thursday
,friday
,saturday
. - Auto
Firmware doubleUpgrade Delay - Delay of day(s) before installing an automatic patch-level firmware upgrade from FortiGuard (default = 3). Set it 0 to use auto-firmware-upgrade-day instead, which selects allowed day(s) of the week for installing an automatic patch-level firmware upgrade.
- Auto
Firmware doubleUpgrade End Hour - End time in the designated time window for automatic patch-level firmware upgrade from FortiGuard in 24 hour time (0 ~ 23, default = 4). When the end time is smaller than the start time, the end time is interpreted as the next day. The actual upgrade time is selected randomly within the time window.
- Auto
Firmware doubleUpgrade Start Hour - Start time in the designated time window for automatic patch-level firmware upgrade from FortiGuard in 24 hour time (0 ~ 23, default = 2). The actual upgrade time is selected randomly within the time window.
- Auto
Join stringForticloud - Automatically connect to and login to FortiCloud. Valid values:
disable
,enable
. - Ddns
Server stringIp - IP address of the FortiDDNS server.
- Ddns
Server stringIp6 - IPv6 address of the FortiDDNS server.
- Ddns
Server doublePort - Port used to communicate with FortiDDNS servers.
- Fds
License doubleExpiring Days - Threshold for number of days before FortiGuard license expiration to generate license expiring event log (1 - 100 days, default = 15).
- Fortiguard
Anycast string - Enable/disable use of FortiGuard's anycast network. Valid values:
disable
,enable
. - Fortiguard
Anycast stringSource - Configure which of Fortinet's servers to provide FortiGuard services in FortiGuard's anycast network. Default is Fortinet. Valid values:
fortinet
,aws
,debug
. - Gui
Prompt stringAuto Upgrade - Enable/disable prompting of automatic patch-level firmware upgrade recommendation. Valid values:
disable
,enable
. - Interface string
- Specify outgoing interface to reach server.
- Interface
Select stringMethod - Specify how to select outgoing interface to reach server. Valid values:
auto
,sdwan
,specify
. - Load
Balance doubleServers - Number of servers to alternate between as first FortiGuard option.
- Object
System stringFortiguard Id - an identifier for the resource.
- Outbreak
Prevention stringCache - Enable/disable FortiGuard Virus Outbreak Prevention cache. Valid values:
disable
,enable
. - Outbreak
Prevention doubleCache Mpercent - Maximum percent of memory FortiGuard Virus Outbreak Prevention cache can use (1 - 15%, default = 2).
- Outbreak
Prevention doubleCache Mpermille - Maximum permille of memory FortiGuard Virus Outbreak Prevention cache can use (1 - 150 permille, default = 1).
- Outbreak
Prevention doubleCache Ttl - Time-to-live for FortiGuard Virus Outbreak Prevention cache entries (300 - 86400 sec, default = 300).
- Outbreak
Prevention doubleExpiration - Outbreak-Prevention-Expiration.
- Outbreak
Prevention stringForce Off - Turn off FortiGuard Virus Outbreak Prevention service. Valid values:
disable
,enable
. - Outbreak
Prevention doubleLicense - Outbreak-Prevention-License.
- Outbreak
Prevention doubleTimeout - FortiGuard Virus Outbreak Prevention time out (1 - 30 sec, default = 7).
- Persistent
Connection string - Enable/disable use of persistent connection to receive update notification from FortiGuard. Valid values:
disable
,enable
. - Port string
- Port used to communicate with the FortiGuard servers. Valid values:
53
,80
,443
,8888
. - Protocol string
- Protocol used to communicate with the FortiGuard servers. Valid values:
udp
,http
,https
. - Proxy
Passwords List<string> - Proxy user password.
- Proxy
Server stringIp - IP address of the proxy server.
- Proxy
Server doublePort - Port used to communicate with the proxy server.
- Proxy
Username string - Proxy user name.
- Sandbox
Inline stringScan - Enable/disable FortiCloud Sandbox inline-scan. Valid values:
disable
,enable
. - Sandbox
Region string - Cloud sandbox region.
- 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
. - Sdns
Options List<string> - Customization options for the FortiGuard DNS service. Valid values:
include-question-section
. - Sdns
Server List<string>Ips - IP address of the FortiDNS server.
- Sdns
Server doublePort - Port used to communicate with FortiDNS servers.
- Service
Account stringId - Service account ID.
- Source
Ip string - Source IPv4 address used to communicate with FortiGuard.
- Source
Ip6 string - Source IPv6 address used to communicate with FortiGuard.
- Update
Build stringProxy - Enable/disable proxy dictionary rebuild. Valid values:
disable
,enable
. - Update
Dldb string - Enable/disable DLP signature update. Valid values:
disable
,enable
. - Update
Extdb string - Enable/disable external resource update. Valid values:
disable
,enable
. - Update
Ffdb string - Enable/disable Internet Service Database update. Valid values:
disable
,enable
. - Update
Server stringLocation - Signature update server location. Valid values:
any
,usa
. - Update
Uwdb string - Enable/disable allowlist update. Valid values:
disable
,enable
. - Vdom string
- FortiGuard Service virtual domain name.
- Videofilter
Expiration double - Videofilter-Expiration.
- Videofilter
License double - Videofilter-License.
- Webfilter
Cache string - Enable/disable FortiGuard web filter caching. Valid values:
disable
,enable
. - Webfilter
Cache doubleTtl - Time-to-live for web filter cache entries in seconds (300 - 86400).
- Webfilter
Expiration double - Webfilter-Expiration.
- Webfilter
Force stringOff - Enable/disable turning off the FortiGuard web filtering service. Valid values:
disable
,enable
. - Webfilter
License double - Webfilter-License.
- Webfilter
Timeout double - Web filter query time out (1 - 30 sec, default = 7).
- Adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - Antispam
Cache string - Enable/disable FortiGuard antispam request caching. Uses a small amount of memory but improves performance. Valid values:
disable
,enable
. - Antispam
Cache float64Mpercent - Maximum percent of FortiGate memory the antispam cache is allowed to use (1 - 15%).
- Antispam
Cache float64Mpermille - Maximum permille of FortiGate memory the antispam cache is allowed to use (1 - 150).
- Antispam
Cache float64Ttl - Time-to-live for antispam cache entries in seconds (300 - 86400). Lower times reduce the cache size. Higher times may improve performance since the cache will have more entries.
- Antispam
Expiration float64 - Antispam-Expiration.
- Antispam
Force stringOff - Enable/disable turning off the FortiGuard antispam service. Valid values:
disable
,enable
. - Antispam
License float64 - Antispam-License.
- Antispam
Timeout float64 - Antispam query time out (1 - 30 sec, default = 7).
- Anycast
Sdns stringServer Ip - IP address of the FortiGuard anycast DNS rating server.
- Anycast
Sdns float64Server Port - Port to connect to on the FortiGuard anycast DNS rating server.
- Auto
Firmware stringUpgrade - Enable/disable automatic patch-level firmware upgrade from FortiGuard. The FortiGate unit searches for new patches only in the same major and minor version. Valid values:
disable
,enable
. - Auto
Firmware []stringUpgrade Days - Allowed day(s) of the week to start automatic patch-level firmware upgrade from FortiGuard. Valid values:
sunday
,monday
,tuesday
,wednesday
,thursday
,friday
,saturday
. - Auto
Firmware float64Upgrade Delay - Delay of day(s) before installing an automatic patch-level firmware upgrade from FortiGuard (default = 3). Set it 0 to use auto-firmware-upgrade-day instead, which selects allowed day(s) of the week for installing an automatic patch-level firmware upgrade.
- Auto
Firmware float64Upgrade End Hour - End time in the designated time window for automatic patch-level firmware upgrade from FortiGuard in 24 hour time (0 ~ 23, default = 4). When the end time is smaller than the start time, the end time is interpreted as the next day. The actual upgrade time is selected randomly within the time window.
- Auto
Firmware float64Upgrade Start Hour - Start time in the designated time window for automatic patch-level firmware upgrade from FortiGuard in 24 hour time (0 ~ 23, default = 2). The actual upgrade time is selected randomly within the time window.
- Auto
Join stringForticloud - Automatically connect to and login to FortiCloud. Valid values:
disable
,enable
. - Ddns
Server stringIp - IP address of the FortiDDNS server.
- Ddns
Server stringIp6 - IPv6 address of the FortiDDNS server.
- Ddns
Server float64Port - Port used to communicate with FortiDDNS servers.
- Fds
License float64Expiring Days - Threshold for number of days before FortiGuard license expiration to generate license expiring event log (1 - 100 days, default = 15).
- Fortiguard
Anycast string - Enable/disable use of FortiGuard's anycast network. Valid values:
disable
,enable
. - Fortiguard
Anycast stringSource - Configure which of Fortinet's servers to provide FortiGuard services in FortiGuard's anycast network. Default is Fortinet. Valid values:
fortinet
,aws
,debug
. - Gui
Prompt stringAuto Upgrade - Enable/disable prompting of automatic patch-level firmware upgrade recommendation. Valid values:
disable
,enable
. - Interface string
- Specify outgoing interface to reach server.
- Interface
Select stringMethod - Specify how to select outgoing interface to reach server. Valid values:
auto
,sdwan
,specify
. - Load
Balance float64Servers - Number of servers to alternate between as first FortiGuard option.
- Object
System stringFortiguard Id - an identifier for the resource.
- Outbreak
Prevention stringCache - Enable/disable FortiGuard Virus Outbreak Prevention cache. Valid values:
disable
,enable
. - Outbreak
Prevention float64Cache Mpercent - Maximum percent of memory FortiGuard Virus Outbreak Prevention cache can use (1 - 15%, default = 2).
- Outbreak
Prevention float64Cache Mpermille - Maximum permille of memory FortiGuard Virus Outbreak Prevention cache can use (1 - 150 permille, default = 1).
- Outbreak
Prevention float64Cache Ttl - Time-to-live for FortiGuard Virus Outbreak Prevention cache entries (300 - 86400 sec, default = 300).
- Outbreak
Prevention float64Expiration - Outbreak-Prevention-Expiration.
- Outbreak
Prevention stringForce Off - Turn off FortiGuard Virus Outbreak Prevention service. Valid values:
disable
,enable
. - Outbreak
Prevention float64License - Outbreak-Prevention-License.
- Outbreak
Prevention float64Timeout - FortiGuard Virus Outbreak Prevention time out (1 - 30 sec, default = 7).
- Persistent
Connection string - Enable/disable use of persistent connection to receive update notification from FortiGuard. Valid values:
disable
,enable
. - Port string
- Port used to communicate with the FortiGuard servers. Valid values:
53
,80
,443
,8888
. - Protocol string
- Protocol used to communicate with the FortiGuard servers. Valid values:
udp
,http
,https
. - Proxy
Passwords []string - Proxy user password.
- Proxy
Server stringIp - IP address of the proxy server.
- Proxy
Server float64Port - Port used to communicate with the proxy server.
- Proxy
Username string - Proxy user name.
- Sandbox
Inline stringScan - Enable/disable FortiCloud Sandbox inline-scan. Valid values:
disable
,enable
. - Sandbox
Region string - Cloud sandbox region.
- 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
. - Sdns
Options []string - Customization options for the FortiGuard DNS service. Valid values:
include-question-section
. - Sdns
Server []stringIps - IP address of the FortiDNS server.
- Sdns
Server float64Port - Port used to communicate with FortiDNS servers.
- Service
Account stringId - Service account ID.
- Source
Ip string - Source IPv4 address used to communicate with FortiGuard.
- Source
Ip6 string - Source IPv6 address used to communicate with FortiGuard.
- Update
Build stringProxy - Enable/disable proxy dictionary rebuild. Valid values:
disable
,enable
. - Update
Dldb string - Enable/disable DLP signature update. Valid values:
disable
,enable
. - Update
Extdb string - Enable/disable external resource update. Valid values:
disable
,enable
. - Update
Ffdb string - Enable/disable Internet Service Database update. Valid values:
disable
,enable
. - Update
Server stringLocation - Signature update server location. Valid values:
any
,usa
. - Update
Uwdb string - Enable/disable allowlist update. Valid values:
disable
,enable
. - Vdom string
- FortiGuard Service virtual domain name.
- Videofilter
Expiration float64 - Videofilter-Expiration.
- Videofilter
License float64 - Videofilter-License.
- Webfilter
Cache string - Enable/disable FortiGuard web filter caching. Valid values:
disable
,enable
. - Webfilter
Cache float64Ttl - Time-to-live for web filter cache entries in seconds (300 - 86400).
- Webfilter
Expiration float64 - Webfilter-Expiration.
- Webfilter
Force stringOff - Enable/disable turning off the FortiGuard web filtering service. Valid values:
disable
,enable
. - Webfilter
License float64 - Webfilter-License.
- Webfilter
Timeout float64 - Web filter query time out (1 - 30 sec, default = 7).
- adom String
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - antispam
Cache String - Enable/disable FortiGuard antispam request caching. Uses a small amount of memory but improves performance. Valid values:
disable
,enable
. - antispam
Cache DoubleMpercent - Maximum percent of FortiGate memory the antispam cache is allowed to use (1 - 15%).
- antispam
Cache DoubleMpermille - Maximum permille of FortiGate memory the antispam cache is allowed to use (1 - 150).
- antispam
Cache DoubleTtl - Time-to-live for antispam cache entries in seconds (300 - 86400). Lower times reduce the cache size. Higher times may improve performance since the cache will have more entries.
- antispam
Expiration Double - Antispam-Expiration.
- antispam
Force StringOff - Enable/disable turning off the FortiGuard antispam service. Valid values:
disable
,enable
. - antispam
License Double - Antispam-License.
- antispam
Timeout Double - Antispam query time out (1 - 30 sec, default = 7).
- anycast
Sdns StringServer Ip - IP address of the FortiGuard anycast DNS rating server.
- anycast
Sdns DoubleServer Port - Port to connect to on the FortiGuard anycast DNS rating server.
- auto
Firmware StringUpgrade - Enable/disable automatic patch-level firmware upgrade from FortiGuard. The FortiGate unit searches for new patches only in the same major and minor version. Valid values:
disable
,enable
. - auto
Firmware List<String>Upgrade Days - Allowed day(s) of the week to start automatic patch-level firmware upgrade from FortiGuard. Valid values:
sunday
,monday
,tuesday
,wednesday
,thursday
,friday
,saturday
. - auto
Firmware DoubleUpgrade Delay - Delay of day(s) before installing an automatic patch-level firmware upgrade from FortiGuard (default = 3). Set it 0 to use auto-firmware-upgrade-day instead, which selects allowed day(s) of the week for installing an automatic patch-level firmware upgrade.
- auto
Firmware DoubleUpgrade End Hour - End time in the designated time window for automatic patch-level firmware upgrade from FortiGuard in 24 hour time (0 ~ 23, default = 4). When the end time is smaller than the start time, the end time is interpreted as the next day. The actual upgrade time is selected randomly within the time window.
- auto
Firmware DoubleUpgrade Start Hour - Start time in the designated time window for automatic patch-level firmware upgrade from FortiGuard in 24 hour time (0 ~ 23, default = 2). The actual upgrade time is selected randomly within the time window.
- auto
Join StringForticloud - Automatically connect to and login to FortiCloud. Valid values:
disable
,enable
. - ddns
Server StringIp - IP address of the FortiDDNS server.
- ddns
Server StringIp6 - IPv6 address of the FortiDDNS server.
- ddns
Server DoublePort - Port used to communicate with FortiDDNS servers.
- fds
License DoubleExpiring Days - Threshold for number of days before FortiGuard license expiration to generate license expiring event log (1 - 100 days, default = 15).
- fortiguard
Anycast String - Enable/disable use of FortiGuard's anycast network. Valid values:
disable
,enable
. - fortiguard
Anycast StringSource - Configure which of Fortinet's servers to provide FortiGuard services in FortiGuard's anycast network. Default is Fortinet. Valid values:
fortinet
,aws
,debug
. - gui
Prompt StringAuto Upgrade - Enable/disable prompting of automatic patch-level firmware upgrade recommendation. Valid values:
disable
,enable
. - interface
Select StringMethod - Specify how to select outgoing interface to reach server. Valid values:
auto
,sdwan
,specify
. - interface_ String
- Specify outgoing interface to reach server.
- load
Balance DoubleServers - Number of servers to alternate between as first FortiGuard option.
- object
System StringFortiguard Id - an identifier for the resource.
- outbreak
Prevention StringCache - Enable/disable FortiGuard Virus Outbreak Prevention cache. Valid values:
disable
,enable
. - outbreak
Prevention DoubleCache Mpercent - Maximum percent of memory FortiGuard Virus Outbreak Prevention cache can use (1 - 15%, default = 2).
- outbreak
Prevention DoubleCache Mpermille - Maximum permille of memory FortiGuard Virus Outbreak Prevention cache can use (1 - 150 permille, default = 1).
- outbreak
Prevention DoubleCache Ttl - Time-to-live for FortiGuard Virus Outbreak Prevention cache entries (300 - 86400 sec, default = 300).
- outbreak
Prevention DoubleExpiration - Outbreak-Prevention-Expiration.
- outbreak
Prevention StringForce Off - Turn off FortiGuard Virus Outbreak Prevention service. Valid values:
disable
,enable
. - outbreak
Prevention DoubleLicense - Outbreak-Prevention-License.
- outbreak
Prevention DoubleTimeout - FortiGuard Virus Outbreak Prevention time out (1 - 30 sec, default = 7).
- persistent
Connection String - Enable/disable use of persistent connection to receive update notification from FortiGuard. Valid values:
disable
,enable
. - port String
- Port used to communicate with the FortiGuard servers. Valid values:
53
,80
,443
,8888
. - protocol String
- Protocol used to communicate with the FortiGuard servers. Valid values:
udp
,http
,https
. - proxy
Passwords List<String> - Proxy user password.
- proxy
Server StringIp - IP address of the proxy server.
- proxy
Server DoublePort - Port used to communicate with the proxy server.
- proxy
Username String - Proxy user name.
- sandbox
Inline StringScan - Enable/disable FortiCloud Sandbox inline-scan. Valid values:
disable
,enable
. - sandbox
Region String - Cloud sandbox region.
- 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
. - sdns
Options List<String> - Customization options for the FortiGuard DNS service. Valid values:
include-question-section
. - sdns
Server List<String>Ips - IP address of the FortiDNS server.
- sdns
Server DoublePort - Port used to communicate with FortiDNS servers.
- service
Account StringId - Service account ID.
- source
Ip String - Source IPv4 address used to communicate with FortiGuard.
- source
Ip6 String - Source IPv6 address used to communicate with FortiGuard.
- update
Build StringProxy - Enable/disable proxy dictionary rebuild. Valid values:
disable
,enable
. - update
Dldb String - Enable/disable DLP signature update. Valid values:
disable
,enable
. - update
Extdb String - Enable/disable external resource update. Valid values:
disable
,enable
. - update
Ffdb String - Enable/disable Internet Service Database update. Valid values:
disable
,enable
. - update
Server StringLocation - Signature update server location. Valid values:
any
,usa
. - update
Uwdb String - Enable/disable allowlist update. Valid values:
disable
,enable
. - vdom String
- FortiGuard Service virtual domain name.
- videofilter
Expiration Double - Videofilter-Expiration.
- videofilter
License Double - Videofilter-License.
- webfilter
Cache String - Enable/disable FortiGuard web filter caching. Valid values:
disable
,enable
. - webfilter
Cache DoubleTtl - Time-to-live for web filter cache entries in seconds (300 - 86400).
- webfilter
Expiration Double - Webfilter-Expiration.
- webfilter
Force StringOff - Enable/disable turning off the FortiGuard web filtering service. Valid values:
disable
,enable
. - webfilter
License Double - Webfilter-License.
- webfilter
Timeout Double - Web filter query time out (1 - 30 sec, default = 7).
- adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - antispam
Cache string - Enable/disable FortiGuard antispam request caching. Uses a small amount of memory but improves performance. Valid values:
disable
,enable
. - antispam
Cache numberMpercent - Maximum percent of FortiGate memory the antispam cache is allowed to use (1 - 15%).
- antispam
Cache numberMpermille - Maximum permille of FortiGate memory the antispam cache is allowed to use (1 - 150).
- antispam
Cache numberTtl - Time-to-live for antispam cache entries in seconds (300 - 86400). Lower times reduce the cache size. Higher times may improve performance since the cache will have more entries.
- antispam
Expiration number - Antispam-Expiration.
- antispam
Force stringOff - Enable/disable turning off the FortiGuard antispam service. Valid values:
disable
,enable
. - antispam
License number - Antispam-License.
- antispam
Timeout number - Antispam query time out (1 - 30 sec, default = 7).
- anycast
Sdns stringServer Ip - IP address of the FortiGuard anycast DNS rating server.
- anycast
Sdns numberServer Port - Port to connect to on the FortiGuard anycast DNS rating server.
- auto
Firmware stringUpgrade - Enable/disable automatic patch-level firmware upgrade from FortiGuard. The FortiGate unit searches for new patches only in the same major and minor version. Valid values:
disable
,enable
. - auto
Firmware string[]Upgrade Days - Allowed day(s) of the week to start automatic patch-level firmware upgrade from FortiGuard. Valid values:
sunday
,monday
,tuesday
,wednesday
,thursday
,friday
,saturday
. - auto
Firmware numberUpgrade Delay - Delay of day(s) before installing an automatic patch-level firmware upgrade from FortiGuard (default = 3). Set it 0 to use auto-firmware-upgrade-day instead, which selects allowed day(s) of the week for installing an automatic patch-level firmware upgrade.
- auto
Firmware numberUpgrade End Hour - End time in the designated time window for automatic patch-level firmware upgrade from FortiGuard in 24 hour time (0 ~ 23, default = 4). When the end time is smaller than the start time, the end time is interpreted as the next day. The actual upgrade time is selected randomly within the time window.
- auto
Firmware numberUpgrade Start Hour - Start time in the designated time window for automatic patch-level firmware upgrade from FortiGuard in 24 hour time (0 ~ 23, default = 2). The actual upgrade time is selected randomly within the time window.
- auto
Join stringForticloud - Automatically connect to and login to FortiCloud. Valid values:
disable
,enable
. - ddns
Server stringIp - IP address of the FortiDDNS server.
- ddns
Server stringIp6 - IPv6 address of the FortiDDNS server.
- ddns
Server numberPort - Port used to communicate with FortiDDNS servers.
- fds
License numberExpiring Days - Threshold for number of days before FortiGuard license expiration to generate license expiring event log (1 - 100 days, default = 15).
- fortiguard
Anycast string - Enable/disable use of FortiGuard's anycast network. Valid values:
disable
,enable
. - fortiguard
Anycast stringSource - Configure which of Fortinet's servers to provide FortiGuard services in FortiGuard's anycast network. Default is Fortinet. Valid values:
fortinet
,aws
,debug
. - gui
Prompt stringAuto Upgrade - Enable/disable prompting of automatic patch-level firmware upgrade recommendation. Valid values:
disable
,enable
. - interface string
- Specify outgoing interface to reach server.
- interface
Select stringMethod - Specify how to select outgoing interface to reach server. Valid values:
auto
,sdwan
,specify
. - load
Balance numberServers - Number of servers to alternate between as first FortiGuard option.
- object
System stringFortiguard Id - an identifier for the resource.
- outbreak
Prevention stringCache - Enable/disable FortiGuard Virus Outbreak Prevention cache. Valid values:
disable
,enable
. - outbreak
Prevention numberCache Mpercent - Maximum percent of memory FortiGuard Virus Outbreak Prevention cache can use (1 - 15%, default = 2).
- outbreak
Prevention numberCache Mpermille - Maximum permille of memory FortiGuard Virus Outbreak Prevention cache can use (1 - 150 permille, default = 1).
- outbreak
Prevention numberCache Ttl - Time-to-live for FortiGuard Virus Outbreak Prevention cache entries (300 - 86400 sec, default = 300).
- outbreak
Prevention numberExpiration - Outbreak-Prevention-Expiration.
- outbreak
Prevention stringForce Off - Turn off FortiGuard Virus Outbreak Prevention service. Valid values:
disable
,enable
. - outbreak
Prevention numberLicense - Outbreak-Prevention-License.
- outbreak
Prevention numberTimeout - FortiGuard Virus Outbreak Prevention time out (1 - 30 sec, default = 7).
- persistent
Connection string - Enable/disable use of persistent connection to receive update notification from FortiGuard. Valid values:
disable
,enable
. - port string
- Port used to communicate with the FortiGuard servers. Valid values:
53
,80
,443
,8888
. - protocol string
- Protocol used to communicate with the FortiGuard servers. Valid values:
udp
,http
,https
. - proxy
Passwords string[] - Proxy user password.
- proxy
Server stringIp - IP address of the proxy server.
- proxy
Server numberPort - Port used to communicate with the proxy server.
- proxy
Username string - Proxy user name.
- sandbox
Inline stringScan - Enable/disable FortiCloud Sandbox inline-scan. Valid values:
disable
,enable
. - sandbox
Region string - Cloud sandbox region.
- 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
. - sdns
Options string[] - Customization options for the FortiGuard DNS service. Valid values:
include-question-section
. - sdns
Server string[]Ips - IP address of the FortiDNS server.
- sdns
Server numberPort - Port used to communicate with FortiDNS servers.
- service
Account stringId - Service account ID.
- source
Ip string - Source IPv4 address used to communicate with FortiGuard.
- source
Ip6 string - Source IPv6 address used to communicate with FortiGuard.
- update
Build stringProxy - Enable/disable proxy dictionary rebuild. Valid values:
disable
,enable
. - update
Dldb string - Enable/disable DLP signature update. Valid values:
disable
,enable
. - update
Extdb string - Enable/disable external resource update. Valid values:
disable
,enable
. - update
Ffdb string - Enable/disable Internet Service Database update. Valid values:
disable
,enable
. - update
Server stringLocation - Signature update server location. Valid values:
any
,usa
. - update
Uwdb string - Enable/disable allowlist update. Valid values:
disable
,enable
. - vdom string
- FortiGuard Service virtual domain name.
- videofilter
Expiration number - Videofilter-Expiration.
- videofilter
License number - Videofilter-License.
- webfilter
Cache string - Enable/disable FortiGuard web filter caching. Valid values:
disable
,enable
. - webfilter
Cache numberTtl - Time-to-live for web filter cache entries in seconds (300 - 86400).
- webfilter
Expiration number - Webfilter-Expiration.
- webfilter
Force stringOff - Enable/disable turning off the FortiGuard web filtering service. Valid values:
disable
,enable
. - webfilter
License number - Webfilter-License.
- webfilter
Timeout number - Web filter query time out (1 - 30 sec, default = 7).
- adom str
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - antispam_
cache str - Enable/disable FortiGuard antispam request caching. Uses a small amount of memory but improves performance. Valid values:
disable
,enable
. - antispam_
cache_ floatmpercent - Maximum percent of FortiGate memory the antispam cache is allowed to use (1 - 15%).
- antispam_
cache_ floatmpermille - Maximum permille of FortiGate memory the antispam cache is allowed to use (1 - 150).
- antispam_
cache_ floatttl - Time-to-live for antispam cache entries in seconds (300 - 86400). Lower times reduce the cache size. Higher times may improve performance since the cache will have more entries.
- antispam_
expiration float - Antispam-Expiration.
- antispam_
force_ stroff - Enable/disable turning off the FortiGuard antispam service. Valid values:
disable
,enable
. - antispam_
license float - Antispam-License.
- antispam_
timeout float - Antispam query time out (1 - 30 sec, default = 7).
- anycast_
sdns_ strserver_ ip - IP address of the FortiGuard anycast DNS rating server.
- anycast_
sdns_ floatserver_ port - Port to connect to on the FortiGuard anycast DNS rating server.
- auto_
firmware_ strupgrade - Enable/disable automatic patch-level firmware upgrade from FortiGuard. The FortiGate unit searches for new patches only in the same major and minor version. Valid values:
disable
,enable
. - auto_
firmware_ Sequence[str]upgrade_ days - Allowed day(s) of the week to start automatic patch-level firmware upgrade from FortiGuard. Valid values:
sunday
,monday
,tuesday
,wednesday
,thursday
,friday
,saturday
. - auto_
firmware_ floatupgrade_ delay - Delay of day(s) before installing an automatic patch-level firmware upgrade from FortiGuard (default = 3). Set it 0 to use auto-firmware-upgrade-day instead, which selects allowed day(s) of the week for installing an automatic patch-level firmware upgrade.
- auto_
firmware_ floatupgrade_ end_ hour - End time in the designated time window for automatic patch-level firmware upgrade from FortiGuard in 24 hour time (0 ~ 23, default = 4). When the end time is smaller than the start time, the end time is interpreted as the next day. The actual upgrade time is selected randomly within the time window.
- auto_
firmware_ floatupgrade_ start_ hour - Start time in the designated time window for automatic patch-level firmware upgrade from FortiGuard in 24 hour time (0 ~ 23, default = 2). The actual upgrade time is selected randomly within the time window.
- auto_
join_ strforticloud - Automatically connect to and login to FortiCloud. Valid values:
disable
,enable
. - ddns_
server_ strip - IP address of the FortiDDNS server.
- ddns_
server_ strip6 - IPv6 address of the FortiDDNS server.
- ddns_
server_ floatport - Port used to communicate with FortiDDNS servers.
- fds_
license_ floatexpiring_ days - Threshold for number of days before FortiGuard license expiration to generate license expiring event log (1 - 100 days, default = 15).
- fortiguard_
anycast str - Enable/disable use of FortiGuard's anycast network. Valid values:
disable
,enable
. - fortiguard_
anycast_ strsource - Configure which of Fortinet's servers to provide FortiGuard services in FortiGuard's anycast network. Default is Fortinet. Valid values:
fortinet
,aws
,debug
. - gui_
prompt_ strauto_ upgrade - Enable/disable prompting of automatic patch-level firmware upgrade recommendation. Valid values:
disable
,enable
. - interface str
- Specify outgoing interface to reach server.
- interface_
select_ strmethod - Specify how to select outgoing interface to reach server. Valid values:
auto
,sdwan
,specify
. - load_
balance_ floatservers - Number of servers to alternate between as first FortiGuard option.
- object_
system_ strfortiguard_ id - an identifier for the resource.
- outbreak_
prevention_ strcache - Enable/disable FortiGuard Virus Outbreak Prevention cache. Valid values:
disable
,enable
. - outbreak_
prevention_ floatcache_ mpercent - Maximum percent of memory FortiGuard Virus Outbreak Prevention cache can use (1 - 15%, default = 2).
- outbreak_
prevention_ floatcache_ mpermille - Maximum permille of memory FortiGuard Virus Outbreak Prevention cache can use (1 - 150 permille, default = 1).
- outbreak_
prevention_ floatcache_ ttl - Time-to-live for FortiGuard Virus Outbreak Prevention cache entries (300 - 86400 sec, default = 300).
- outbreak_
prevention_ floatexpiration - Outbreak-Prevention-Expiration.
- outbreak_
prevention_ strforce_ off - Turn off FortiGuard Virus Outbreak Prevention service. Valid values:
disable
,enable
. - outbreak_
prevention_ floatlicense - Outbreak-Prevention-License.
- outbreak_
prevention_ floattimeout - FortiGuard Virus Outbreak Prevention time out (1 - 30 sec, default = 7).
- persistent_
connection str - Enable/disable use of persistent connection to receive update notification from FortiGuard. Valid values:
disable
,enable
. - port str
- Port used to communicate with the FortiGuard servers. Valid values:
53
,80
,443
,8888
. - protocol str
- Protocol used to communicate with the FortiGuard servers. Valid values:
udp
,http
,https
. - proxy_
passwords Sequence[str] - Proxy user password.
- proxy_
server_ strip - IP address of the proxy server.
- proxy_
server_ floatport - Port used to communicate with the proxy server.
- proxy_
username str - Proxy user name.
- sandbox_
inline_ strscan - Enable/disable FortiCloud Sandbox inline-scan. Valid values:
disable
,enable
. - sandbox_
region str - Cloud sandbox region.
- 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
. - sdns_
options Sequence[str] - Customization options for the FortiGuard DNS service. Valid values:
include-question-section
. - sdns_
server_ Sequence[str]ips - IP address of the FortiDNS server.
- sdns_
server_ floatport - Port used to communicate with FortiDNS servers.
- service_
account_ strid - Service account ID.
- source_
ip str - Source IPv4 address used to communicate with FortiGuard.
- source_
ip6 str - Source IPv6 address used to communicate with FortiGuard.
- update_
build_ strproxy - Enable/disable proxy dictionary rebuild. Valid values:
disable
,enable
. - update_
dldb str - Enable/disable DLP signature update. Valid values:
disable
,enable
. - update_
extdb str - Enable/disable external resource update. Valid values:
disable
,enable
. - update_
ffdb str - Enable/disable Internet Service Database update. Valid values:
disable
,enable
. - update_
server_ strlocation - Signature update server location. Valid values:
any
,usa
. - update_
uwdb str - Enable/disable allowlist update. Valid values:
disable
,enable
. - vdom str
- FortiGuard Service virtual domain name.
- videofilter_
expiration float - Videofilter-Expiration.
- videofilter_
license float - Videofilter-License.
- webfilter_
cache str - Enable/disable FortiGuard web filter caching. Valid values:
disable
,enable
. - webfilter_
cache_ floatttl - Time-to-live for web filter cache entries in seconds (300 - 86400).
- webfilter_
expiration float - Webfilter-Expiration.
- webfilter_
force_ stroff - Enable/disable turning off the FortiGuard web filtering service. Valid values:
disable
,enable
. - webfilter_
license float - Webfilter-License.
- webfilter_
timeout float - Web filter query time out (1 - 30 sec, default = 7).
- adom String
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - antispam
Cache String - Enable/disable FortiGuard antispam request caching. Uses a small amount of memory but improves performance. Valid values:
disable
,enable
. - antispam
Cache NumberMpercent - Maximum percent of FortiGate memory the antispam cache is allowed to use (1 - 15%).
- antispam
Cache NumberMpermille - Maximum permille of FortiGate memory the antispam cache is allowed to use (1 - 150).
- antispam
Cache NumberTtl - Time-to-live for antispam cache entries in seconds (300 - 86400). Lower times reduce the cache size. Higher times may improve performance since the cache will have more entries.
- antispam
Expiration Number - Antispam-Expiration.
- antispam
Force StringOff - Enable/disable turning off the FortiGuard antispam service. Valid values:
disable
,enable
. - antispam
License Number - Antispam-License.
- antispam
Timeout Number - Antispam query time out (1 - 30 sec, default = 7).
- anycast
Sdns StringServer Ip - IP address of the FortiGuard anycast DNS rating server.
- anycast
Sdns NumberServer Port - Port to connect to on the FortiGuard anycast DNS rating server.
- auto
Firmware StringUpgrade - Enable/disable automatic patch-level firmware upgrade from FortiGuard. The FortiGate unit searches for new patches only in the same major and minor version. Valid values:
disable
,enable
. - auto
Firmware List<String>Upgrade Days - Allowed day(s) of the week to start automatic patch-level firmware upgrade from FortiGuard. Valid values:
sunday
,monday
,tuesday
,wednesday
,thursday
,friday
,saturday
. - auto
Firmware NumberUpgrade Delay - Delay of day(s) before installing an automatic patch-level firmware upgrade from FortiGuard (default = 3). Set it 0 to use auto-firmware-upgrade-day instead, which selects allowed day(s) of the week for installing an automatic patch-level firmware upgrade.
- auto
Firmware NumberUpgrade End Hour - End time in the designated time window for automatic patch-level firmware upgrade from FortiGuard in 24 hour time (0 ~ 23, default = 4). When the end time is smaller than the start time, the end time is interpreted as the next day. The actual upgrade time is selected randomly within the time window.
- auto
Firmware NumberUpgrade Start Hour - Start time in the designated time window for automatic patch-level firmware upgrade from FortiGuard in 24 hour time (0 ~ 23, default = 2). The actual upgrade time is selected randomly within the time window.
- auto
Join StringForticloud - Automatically connect to and login to FortiCloud. Valid values:
disable
,enable
. - ddns
Server StringIp - IP address of the FortiDDNS server.
- ddns
Server StringIp6 - IPv6 address of the FortiDDNS server.
- ddns
Server NumberPort - Port used to communicate with FortiDDNS servers.
- fds
License NumberExpiring Days - Threshold for number of days before FortiGuard license expiration to generate license expiring event log (1 - 100 days, default = 15).
- fortiguard
Anycast String - Enable/disable use of FortiGuard's anycast network. Valid values:
disable
,enable
. - fortiguard
Anycast StringSource - Configure which of Fortinet's servers to provide FortiGuard services in FortiGuard's anycast network. Default is Fortinet. Valid values:
fortinet
,aws
,debug
. - gui
Prompt StringAuto Upgrade - Enable/disable prompting of automatic patch-level firmware upgrade recommendation. Valid values:
disable
,enable
. - interface String
- Specify outgoing interface to reach server.
- interface
Select StringMethod - Specify how to select outgoing interface to reach server. Valid values:
auto
,sdwan
,specify
. - load
Balance NumberServers - Number of servers to alternate between as first FortiGuard option.
- object
System StringFortiguard Id - an identifier for the resource.
- outbreak
Prevention StringCache - Enable/disable FortiGuard Virus Outbreak Prevention cache. Valid values:
disable
,enable
. - outbreak
Prevention NumberCache Mpercent - Maximum percent of memory FortiGuard Virus Outbreak Prevention cache can use (1 - 15%, default = 2).
- outbreak
Prevention NumberCache Mpermille - Maximum permille of memory FortiGuard Virus Outbreak Prevention cache can use (1 - 150 permille, default = 1).
- outbreak
Prevention NumberCache Ttl - Time-to-live for FortiGuard Virus Outbreak Prevention cache entries (300 - 86400 sec, default = 300).
- outbreak
Prevention NumberExpiration - Outbreak-Prevention-Expiration.
- outbreak
Prevention StringForce Off - Turn off FortiGuard Virus Outbreak Prevention service. Valid values:
disable
,enable
. - outbreak
Prevention NumberLicense - Outbreak-Prevention-License.
- outbreak
Prevention NumberTimeout - FortiGuard Virus Outbreak Prevention time out (1 - 30 sec, default = 7).
- persistent
Connection String - Enable/disable use of persistent connection to receive update notification from FortiGuard. Valid values:
disable
,enable
. - port String
- Port used to communicate with the FortiGuard servers. Valid values:
53
,80
,443
,8888
. - protocol String
- Protocol used to communicate with the FortiGuard servers. Valid values:
udp
,http
,https
. - proxy
Passwords List<String> - Proxy user password.
- proxy
Server StringIp - IP address of the proxy server.
- proxy
Server NumberPort - Port used to communicate with the proxy server.
- proxy
Username String - Proxy user name.
- sandbox
Inline StringScan - Enable/disable FortiCloud Sandbox inline-scan. Valid values:
disable
,enable
. - sandbox
Region String - Cloud sandbox region.
- 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
. - sdns
Options List<String> - Customization options for the FortiGuard DNS service. Valid values:
include-question-section
. - sdns
Server List<String>Ips - IP address of the FortiDNS server.
- sdns
Server NumberPort - Port used to communicate with FortiDNS servers.
- service
Account StringId - Service account ID.
- source
Ip String - Source IPv4 address used to communicate with FortiGuard.
- source
Ip6 String - Source IPv6 address used to communicate with FortiGuard.
- update
Build StringProxy - Enable/disable proxy dictionary rebuild. Valid values:
disable
,enable
. - update
Dldb String - Enable/disable DLP signature update. Valid values:
disable
,enable
. - update
Extdb String - Enable/disable external resource update. Valid values:
disable
,enable
. - update
Ffdb String - Enable/disable Internet Service Database update. Valid values:
disable
,enable
. - update
Server StringLocation - Signature update server location. Valid values:
any
,usa
. - update
Uwdb String - Enable/disable allowlist update. Valid values:
disable
,enable
. - vdom String
- FortiGuard Service virtual domain name.
- videofilter
Expiration Number - Videofilter-Expiration.
- videofilter
License Number - Videofilter-License.
- webfilter
Cache String - Enable/disable FortiGuard web filter caching. Valid values:
disable
,enable
. - webfilter
Cache NumberTtl - Time-to-live for web filter cache entries in seconds (300 - 86400).
- webfilter
Expiration Number - Webfilter-Expiration.
- webfilter
Force StringOff - Enable/disable turning off the FortiGuard web filtering service. Valid values:
disable
,enable
. - webfilter
License Number - Webfilter-License.
- webfilter
Timeout Number - Web filter query time out (1 - 30 sec, default = 7).
Import
ObjectSystem Fortiguard can be imported using any of these accepted formats:
$ export “FORTIMANAGER_IMPORT_TABLE”=“true”
$ pulumi import fortimanager:index/objectSystemFortiguard:ObjectSystemFortiguard labelname ObjectSystemFortiguard
$ 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.