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

fortimanager.SystempSystemGlobal

Explore with Pulumi AI

Configure global attributes.

Example Usage

import * as pulumi from "@pulumi/pulumi";
import * as fortimanager from "@pulumi/fortimanager";

const trname = new fortimanager.SystempSystemGlobal("trname", {
    adminHttpsRedirect: "enable",
    adminPort: 80,
    devprof: "default",
});
Copy
import pulumi
import pulumi_fortimanager as fortimanager

trname = fortimanager.SystempSystemGlobal("trname",
    admin_https_redirect="enable",
    admin_port=80,
    devprof="default")
Copy
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.NewSystempSystemGlobal(ctx, "trname", &fortimanager.SystempSystemGlobalArgs{
			AdminHttpsRedirect: pulumi.String("enable"),
			AdminPort:          pulumi.Float64(80),
			Devprof:            pulumi.String("default"),
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Fortimanager = Pulumi.Fortimanager;

return await Deployment.RunAsync(() => 
{
    var trname = new Fortimanager.SystempSystemGlobal("trname", new()
    {
        AdminHttpsRedirect = "enable",
        AdminPort = 80,
        Devprof = "default",
    });

});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.fortimanager.SystempSystemGlobal;
import com.pulumi.fortimanager.SystempSystemGlobalArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;

public class App {
    public static void main(String[] args) {
        Pulumi.run(App::stack);
    }

    public static void stack(Context ctx) {
        var trname = new SystempSystemGlobal("trname", SystempSystemGlobalArgs.builder()
            .adminHttpsRedirect("enable")
            .adminPort(80)
            .devprof("default")
            .build());

    }
}
Copy
resources:
  trname:
    type: fortimanager:SystempSystemGlobal
    properties:
      adminHttpsRedirect: enable
      adminPort: 80
      devprof: default
Copy

Create SystempSystemGlobal Resource

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

Constructor syntax

new SystempSystemGlobal(name: string, args: SystempSystemGlobalArgs, opts?: CustomResourceOptions);
@overload
def SystempSystemGlobal(resource_name: str,
                        args: SystempSystemGlobalArgs,
                        opts: Optional[ResourceOptions] = None)

@overload
def SystempSystemGlobal(resource_name: str,
                        opts: Optional[ResourceOptions] = None,
                        devprof: Optional[str] = None,
                        gui_device_latitude: Optional[str] = None,
                        admin_scp: Optional[str] = None,
                        admin_sport: Optional[float] = None,
                        admin_ssh_port: Optional[float] = None,
                        admin_ssh_v1: Optional[str] = None,
                        admin_telnet_port: Optional[float] = None,
                        admintimeout: Optional[float] = None,
                        adom: Optional[str] = None,
                        admin_https_redirect: Optional[str] = None,
                        admin_port: Optional[float] = None,
                        gui_lines_per_page: Optional[float] = None,
                        gui_ipv6: Optional[str] = None,
                        gui_device_longitude: Optional[str] = None,
                        gui_theme: Optional[str] = None,
                        hostname: Optional[str] = None,
                        language: Optional[str] = None,
                        scopetype: Optional[str] = None,
                        switch_controller: Optional[str] = None,
                        systemp_system_global_id: Optional[str] = None,
                        timezones: Optional[Sequence[str]] = None)
func NewSystempSystemGlobal(ctx *Context, name string, args SystempSystemGlobalArgs, opts ...ResourceOption) (*SystempSystemGlobal, error)
public SystempSystemGlobal(string name, SystempSystemGlobalArgs args, CustomResourceOptions? opts = null)
public SystempSystemGlobal(String name, SystempSystemGlobalArgs args)
public SystempSystemGlobal(String name, SystempSystemGlobalArgs args, CustomResourceOptions options)
type: fortimanager:SystempSystemGlobal
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args This property is required. SystempSystemGlobalArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. SystempSystemGlobalArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args This property is required. SystempSystemGlobalArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. SystempSystemGlobalArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. SystempSystemGlobalArgs
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 systempSystemGlobalResource = new Fortimanager.SystempSystemGlobal("systempSystemGlobalResource", new()
{
    Devprof = "string",
    GuiDeviceLatitude = "string",
    AdminScp = "string",
    AdminSport = 0,
    AdminSshPort = 0,
    AdminSshV1 = "string",
    AdminTelnetPort = 0,
    Admintimeout = 0,
    Adom = "string",
    AdminHttpsRedirect = "string",
    AdminPort = 0,
    GuiLinesPerPage = 0,
    GuiIpv6 = "string",
    GuiDeviceLongitude = "string",
    GuiTheme = "string",
    Hostname = "string",
    Language = "string",
    Scopetype = "string",
    SwitchController = "string",
    SystempSystemGlobalId = "string",
    Timezones = new[]
    {
        "string",
    },
});
Copy
example, err := fortimanager.NewSystempSystemGlobal(ctx, "systempSystemGlobalResource", &fortimanager.SystempSystemGlobalArgs{
Devprof: pulumi.String("string"),
GuiDeviceLatitude: pulumi.String("string"),
AdminScp: pulumi.String("string"),
AdminSport: pulumi.Float64(0),
AdminSshPort: pulumi.Float64(0),
AdminSshV1: pulumi.String("string"),
AdminTelnetPort: pulumi.Float64(0),
Admintimeout: pulumi.Float64(0),
Adom: pulumi.String("string"),
AdminHttpsRedirect: pulumi.String("string"),
AdminPort: pulumi.Float64(0),
GuiLinesPerPage: pulumi.Float64(0),
GuiIpv6: pulumi.String("string"),
GuiDeviceLongitude: pulumi.String("string"),
GuiTheme: pulumi.String("string"),
Hostname: pulumi.String("string"),
Language: pulumi.String("string"),
Scopetype: pulumi.String("string"),
SwitchController: pulumi.String("string"),
SystempSystemGlobalId: pulumi.String("string"),
Timezones: pulumi.StringArray{
pulumi.String("string"),
},
})
Copy
var systempSystemGlobalResource = new SystempSystemGlobal("systempSystemGlobalResource", SystempSystemGlobalArgs.builder()
    .devprof("string")
    .guiDeviceLatitude("string")
    .adminScp("string")
    .adminSport(0)
    .adminSshPort(0)
    .adminSshV1("string")
    .adminTelnetPort(0)
    .admintimeout(0)
    .adom("string")
    .adminHttpsRedirect("string")
    .adminPort(0)
    .guiLinesPerPage(0)
    .guiIpv6("string")
    .guiDeviceLongitude("string")
    .guiTheme("string")
    .hostname("string")
    .language("string")
    .scopetype("string")
    .switchController("string")
    .systempSystemGlobalId("string")
    .timezones("string")
    .build());
Copy
systemp_system_global_resource = fortimanager.SystempSystemGlobal("systempSystemGlobalResource",
    devprof="string",
    gui_device_latitude="string",
    admin_scp="string",
    admin_sport=0,
    admin_ssh_port=0,
    admin_ssh_v1="string",
    admin_telnet_port=0,
    admintimeout=0,
    adom="string",
    admin_https_redirect="string",
    admin_port=0,
    gui_lines_per_page=0,
    gui_ipv6="string",
    gui_device_longitude="string",
    gui_theme="string",
    hostname="string",
    language="string",
    scopetype="string",
    switch_controller="string",
    systemp_system_global_id="string",
    timezones=["string"])
Copy
const systempSystemGlobalResource = new fortimanager.SystempSystemGlobal("systempSystemGlobalResource", {
    devprof: "string",
    guiDeviceLatitude: "string",
    adminScp: "string",
    adminSport: 0,
    adminSshPort: 0,
    adminSshV1: "string",
    adminTelnetPort: 0,
    admintimeout: 0,
    adom: "string",
    adminHttpsRedirect: "string",
    adminPort: 0,
    guiLinesPerPage: 0,
    guiIpv6: "string",
    guiDeviceLongitude: "string",
    guiTheme: "string",
    hostname: "string",
    language: "string",
    scopetype: "string",
    switchController: "string",
    systempSystemGlobalId: "string",
    timezones: ["string"],
});
Copy
type: fortimanager:SystempSystemGlobal
properties:
    adminHttpsRedirect: string
    adminPort: 0
    adminScp: string
    adminSport: 0
    adminSshPort: 0
    adminSshV1: string
    adminTelnetPort: 0
    admintimeout: 0
    adom: string
    devprof: string
    guiDeviceLatitude: string
    guiDeviceLongitude: string
    guiIpv6: string
    guiLinesPerPage: 0
    guiTheme: string
    hostname: string
    language: string
    scopetype: string
    switchController: string
    systempSystemGlobalId: string
    timezones:
        - string
Copy

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

Devprof This property is required. string
Devprof.
AdminHttpsRedirect string
Enable/disable redirection of HTTP administration access to HTTPS. Valid values: disable, enable.
AdminPort double
Administrative access port for HTTP. (1 - 65535, default = 80).
AdminScp string
Enable/disable using SCP to download the system configuration. You can use SCP as an alternative method for backing up the configuration. Valid values: disable, enable.
AdminSport double
Administrative access port for HTTPS. (1 - 65535, default = 443).
AdminSshPort double
Administrative access port for SSH. (1 - 65535, default = 22).
AdminSshV1 string
Enable/disable SSH v1 compatibility. Valid values: disable, enable.
AdminTelnetPort double
Administrative access port for TELNET. (1 - 65535, default = 23).
Admintimeout double
Number of minutes before an idle administrator session times out (5 - 480 minutes (8 hours), default = 5). A shorter idle timeout is more secure.
Adom string
Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
GuiDeviceLatitude string
Support meta variable Add the latitude of the location of this FortiGate to position it on the Threat Map.
GuiDeviceLongitude string
Support meta variable Add the longitude of the location of this FortiGate to position it on the Threat Map.
GuiIpv6 string
Enable/disable IPv6 settings on the GUI. Valid values: disable, enable.
GuiLinesPerPage double
Number of lines to display per page for web administration.
GuiTheme string
Color scheme for the administration GUI. Valid values: blue, green, melongene, red, mariner, neutrino.
Hostname string
Support meta variable FortiGate unit's hostname. Most models will truncate names longer than 24 characters. Some models support hostnames up to 35 characters.
Language string
GUI display language. Valid values: english, simch, japanese, korean, spanish, trach, french, portuguese.
Scopetype string
The scope of application of the resource. Valid values: inherit, adom. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
SwitchController string
Enable/disable switch controller feature. Switch controller allows you to manage FortiSwitch from the FortiGate itself. Valid values: disable, enable.
SystempSystemGlobalId string
an identifier for the resource.
Timezones List<string>
Support meta variable Timezone database name. Enter ? to view the list of timezone.
Devprof This property is required. string
Devprof.
AdminHttpsRedirect string
Enable/disable redirection of HTTP administration access to HTTPS. Valid values: disable, enable.
AdminPort float64
Administrative access port for HTTP. (1 - 65535, default = 80).
AdminScp string
Enable/disable using SCP to download the system configuration. You can use SCP as an alternative method for backing up the configuration. Valid values: disable, enable.
AdminSport float64
Administrative access port for HTTPS. (1 - 65535, default = 443).
AdminSshPort float64
Administrative access port for SSH. (1 - 65535, default = 22).
AdminSshV1 string
Enable/disable SSH v1 compatibility. Valid values: disable, enable.
AdminTelnetPort float64
Administrative access port for TELNET. (1 - 65535, default = 23).
Admintimeout float64
Number of minutes before an idle administrator session times out (5 - 480 minutes (8 hours), default = 5). A shorter idle timeout is more secure.
Adom string
Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
GuiDeviceLatitude string
Support meta variable Add the latitude of the location of this FortiGate to position it on the Threat Map.
GuiDeviceLongitude string
Support meta variable Add the longitude of the location of this FortiGate to position it on the Threat Map.
GuiIpv6 string
Enable/disable IPv6 settings on the GUI. Valid values: disable, enable.
GuiLinesPerPage float64
Number of lines to display per page for web administration.
GuiTheme string
Color scheme for the administration GUI. Valid values: blue, green, melongene, red, mariner, neutrino.
Hostname string
Support meta variable FortiGate unit's hostname. Most models will truncate names longer than 24 characters. Some models support hostnames up to 35 characters.
Language string
GUI display language. Valid values: english, simch, japanese, korean, spanish, trach, french, portuguese.
Scopetype string
The scope of application of the resource. Valid values: inherit, adom. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
SwitchController string
Enable/disable switch controller feature. Switch controller allows you to manage FortiSwitch from the FortiGate itself. Valid values: disable, enable.
SystempSystemGlobalId string
an identifier for the resource.
Timezones []string
Support meta variable Timezone database name. Enter ? to view the list of timezone.
devprof This property is required. String
Devprof.
adminHttpsRedirect String
Enable/disable redirection of HTTP administration access to HTTPS. Valid values: disable, enable.
adminPort Double
Administrative access port for HTTP. (1 - 65535, default = 80).
adminScp String
Enable/disable using SCP to download the system configuration. You can use SCP as an alternative method for backing up the configuration. Valid values: disable, enable.
adminSport Double
Administrative access port for HTTPS. (1 - 65535, default = 443).
adminSshPort Double
Administrative access port for SSH. (1 - 65535, default = 22).
adminSshV1 String
Enable/disable SSH v1 compatibility. Valid values: disable, enable.
adminTelnetPort Double
Administrative access port for TELNET. (1 - 65535, default = 23).
admintimeout Double
Number of minutes before an idle administrator session times out (5 - 480 minutes (8 hours), default = 5). A shorter idle timeout is more secure.
adom String
Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
guiDeviceLatitude String
Support meta variable Add the latitude of the location of this FortiGate to position it on the Threat Map.
guiDeviceLongitude String
Support meta variable Add the longitude of the location of this FortiGate to position it on the Threat Map.
guiIpv6 String
Enable/disable IPv6 settings on the GUI. Valid values: disable, enable.
guiLinesPerPage Double
Number of lines to display per page for web administration.
guiTheme String
Color scheme for the administration GUI. Valid values: blue, green, melongene, red, mariner, neutrino.
hostname String
Support meta variable FortiGate unit's hostname. Most models will truncate names longer than 24 characters. Some models support hostnames up to 35 characters.
language String
GUI display language. Valid values: english, simch, japanese, korean, spanish, trach, french, portuguese.
scopetype String
The scope of application of the resource. Valid values: inherit, adom. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
switchController String
Enable/disable switch controller feature. Switch controller allows you to manage FortiSwitch from the FortiGate itself. Valid values: disable, enable.
systempSystemGlobalId String
an identifier for the resource.
timezones List<String>
Support meta variable Timezone database name. Enter ? to view the list of timezone.
devprof This property is required. string
Devprof.
adminHttpsRedirect string
Enable/disable redirection of HTTP administration access to HTTPS. Valid values: disable, enable.
adminPort number
Administrative access port for HTTP. (1 - 65535, default = 80).
adminScp string
Enable/disable using SCP to download the system configuration. You can use SCP as an alternative method for backing up the configuration. Valid values: disable, enable.
adminSport number
Administrative access port for HTTPS. (1 - 65535, default = 443).
adminSshPort number
Administrative access port for SSH. (1 - 65535, default = 22).
adminSshV1 string
Enable/disable SSH v1 compatibility. Valid values: disable, enable.
adminTelnetPort number
Administrative access port for TELNET. (1 - 65535, default = 23).
admintimeout number
Number of minutes before an idle administrator session times out (5 - 480 minutes (8 hours), default = 5). A shorter idle timeout is more secure.
adom string
Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
guiDeviceLatitude string
Support meta variable Add the latitude of the location of this FortiGate to position it on the Threat Map.
guiDeviceLongitude string
Support meta variable Add the longitude of the location of this FortiGate to position it on the Threat Map.
guiIpv6 string
Enable/disable IPv6 settings on the GUI. Valid values: disable, enable.
guiLinesPerPage number
Number of lines to display per page for web administration.
guiTheme string
Color scheme for the administration GUI. Valid values: blue, green, melongene, red, mariner, neutrino.
hostname string
Support meta variable FortiGate unit's hostname. Most models will truncate names longer than 24 characters. Some models support hostnames up to 35 characters.
language string
GUI display language. Valid values: english, simch, japanese, korean, spanish, trach, french, portuguese.
scopetype string
The scope of application of the resource. Valid values: inherit, adom. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
switchController string
Enable/disable switch controller feature. Switch controller allows you to manage FortiSwitch from the FortiGate itself. Valid values: disable, enable.
systempSystemGlobalId string
an identifier for the resource.
timezones string[]
Support meta variable Timezone database name. Enter ? to view the list of timezone.
devprof This property is required. str
Devprof.
admin_https_redirect str
Enable/disable redirection of HTTP administration access to HTTPS. Valid values: disable, enable.
admin_port float
Administrative access port for HTTP. (1 - 65535, default = 80).
admin_scp str
Enable/disable using SCP to download the system configuration. You can use SCP as an alternative method for backing up the configuration. Valid values: disable, enable.
admin_sport float
Administrative access port for HTTPS. (1 - 65535, default = 443).
admin_ssh_port float
Administrative access port for SSH. (1 - 65535, default = 22).
admin_ssh_v1 str
Enable/disable SSH v1 compatibility. Valid values: disable, enable.
admin_telnet_port float
Administrative access port for TELNET. (1 - 65535, default = 23).
admintimeout float
Number of minutes before an idle administrator session times out (5 - 480 minutes (8 hours), default = 5). A shorter idle timeout is more secure.
adom str
Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
gui_device_latitude str
Support meta variable Add the latitude of the location of this FortiGate to position it on the Threat Map.
gui_device_longitude str
Support meta variable Add the longitude of the location of this FortiGate to position it on the Threat Map.
gui_ipv6 str
Enable/disable IPv6 settings on the GUI. Valid values: disable, enable.
gui_lines_per_page float
Number of lines to display per page for web administration.
gui_theme str
Color scheme for the administration GUI. Valid values: blue, green, melongene, red, mariner, neutrino.
hostname str
Support meta variable FortiGate unit's hostname. Most models will truncate names longer than 24 characters. Some models support hostnames up to 35 characters.
language str
GUI display language. Valid values: english, simch, japanese, korean, spanish, trach, french, portuguese.
scopetype str
The scope of application of the resource. Valid values: inherit, adom. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
switch_controller str
Enable/disable switch controller feature. Switch controller allows you to manage FortiSwitch from the FortiGate itself. Valid values: disable, enable.
systemp_system_global_id str
an identifier for the resource.
timezones Sequence[str]
Support meta variable Timezone database name. Enter ? to view the list of timezone.
devprof This property is required. String
Devprof.
adminHttpsRedirect String
Enable/disable redirection of HTTP administration access to HTTPS. Valid values: disable, enable.
adminPort Number
Administrative access port for HTTP. (1 - 65535, default = 80).
adminScp String
Enable/disable using SCP to download the system configuration. You can use SCP as an alternative method for backing up the configuration. Valid values: disable, enable.
adminSport Number
Administrative access port for HTTPS. (1 - 65535, default = 443).
adminSshPort Number
Administrative access port for SSH. (1 - 65535, default = 22).
adminSshV1 String
Enable/disable SSH v1 compatibility. Valid values: disable, enable.
adminTelnetPort Number
Administrative access port for TELNET. (1 - 65535, default = 23).
admintimeout Number
Number of minutes before an idle administrator session times out (5 - 480 minutes (8 hours), default = 5). A shorter idle timeout is more secure.
adom String
Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
guiDeviceLatitude String
Support meta variable Add the latitude of the location of this FortiGate to position it on the Threat Map.
guiDeviceLongitude String
Support meta variable Add the longitude of the location of this FortiGate to position it on the Threat Map.
guiIpv6 String
Enable/disable IPv6 settings on the GUI. Valid values: disable, enable.
guiLinesPerPage Number
Number of lines to display per page for web administration.
guiTheme String
Color scheme for the administration GUI. Valid values: blue, green, melongene, red, mariner, neutrino.
hostname String
Support meta variable FortiGate unit's hostname. Most models will truncate names longer than 24 characters. Some models support hostnames up to 35 characters.
language String
GUI display language. Valid values: english, simch, japanese, korean, spanish, trach, french, portuguese.
scopetype String
The scope of application of the resource. Valid values: inherit, adom. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
switchController String
Enable/disable switch controller feature. Switch controller allows you to manage FortiSwitch from the FortiGate itself. Valid values: disable, enable.
systempSystemGlobalId String
an identifier for the resource.
timezones List<String>
Support meta variable Timezone database name. Enter ? to view the list of timezone.

Outputs

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

Get an existing SystempSystemGlobal 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?: SystempSystemGlobalState, opts?: CustomResourceOptions): SystempSystemGlobal
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        admin_https_redirect: Optional[str] = None,
        admin_port: Optional[float] = None,
        admin_scp: Optional[str] = None,
        admin_sport: Optional[float] = None,
        admin_ssh_port: Optional[float] = None,
        admin_ssh_v1: Optional[str] = None,
        admin_telnet_port: Optional[float] = None,
        admintimeout: Optional[float] = None,
        adom: Optional[str] = None,
        devprof: Optional[str] = None,
        gui_device_latitude: Optional[str] = None,
        gui_device_longitude: Optional[str] = None,
        gui_ipv6: Optional[str] = None,
        gui_lines_per_page: Optional[float] = None,
        gui_theme: Optional[str] = None,
        hostname: Optional[str] = None,
        language: Optional[str] = None,
        scopetype: Optional[str] = None,
        switch_controller: Optional[str] = None,
        systemp_system_global_id: Optional[str] = None,
        timezones: Optional[Sequence[str]] = None) -> SystempSystemGlobal
func GetSystempSystemGlobal(ctx *Context, name string, id IDInput, state *SystempSystemGlobalState, opts ...ResourceOption) (*SystempSystemGlobal, error)
public static SystempSystemGlobal Get(string name, Input<string> id, SystempSystemGlobalState? state, CustomResourceOptions? opts = null)
public static SystempSystemGlobal get(String name, Output<String> id, SystempSystemGlobalState state, CustomResourceOptions options)
resources:  _:    type: fortimanager:SystempSystemGlobal    get:      id: ${id}
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
The following state arguments are supported:
AdminHttpsRedirect string
Enable/disable redirection of HTTP administration access to HTTPS. Valid values: disable, enable.
AdminPort double
Administrative access port for HTTP. (1 - 65535, default = 80).
AdminScp string
Enable/disable using SCP to download the system configuration. You can use SCP as an alternative method for backing up the configuration. Valid values: disable, enable.
AdminSport double
Administrative access port for HTTPS. (1 - 65535, default = 443).
AdminSshPort double
Administrative access port for SSH. (1 - 65535, default = 22).
AdminSshV1 string
Enable/disable SSH v1 compatibility. Valid values: disable, enable.
AdminTelnetPort double
Administrative access port for TELNET. (1 - 65535, default = 23).
Admintimeout double
Number of minutes before an idle administrator session times out (5 - 480 minutes (8 hours), default = 5). A shorter idle timeout is more secure.
Adom string
Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
Devprof string
Devprof.
GuiDeviceLatitude string
Support meta variable Add the latitude of the location of this FortiGate to position it on the Threat Map.
GuiDeviceLongitude string
Support meta variable Add the longitude of the location of this FortiGate to position it on the Threat Map.
GuiIpv6 string
Enable/disable IPv6 settings on the GUI. Valid values: disable, enable.
GuiLinesPerPage double
Number of lines to display per page for web administration.
GuiTheme string
Color scheme for the administration GUI. Valid values: blue, green, melongene, red, mariner, neutrino.
Hostname string
Support meta variable FortiGate unit's hostname. Most models will truncate names longer than 24 characters. Some models support hostnames up to 35 characters.
Language string
GUI display language. Valid values: english, simch, japanese, korean, spanish, trach, french, portuguese.
Scopetype string
The scope of application of the resource. Valid values: inherit, adom. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
SwitchController string
Enable/disable switch controller feature. Switch controller allows you to manage FortiSwitch from the FortiGate itself. Valid values: disable, enable.
SystempSystemGlobalId string
an identifier for the resource.
Timezones List<string>
Support meta variable Timezone database name. Enter ? to view the list of timezone.
AdminHttpsRedirect string
Enable/disable redirection of HTTP administration access to HTTPS. Valid values: disable, enable.
AdminPort float64
Administrative access port for HTTP. (1 - 65535, default = 80).
AdminScp string
Enable/disable using SCP to download the system configuration. You can use SCP as an alternative method for backing up the configuration. Valid values: disable, enable.
AdminSport float64
Administrative access port for HTTPS. (1 - 65535, default = 443).
AdminSshPort float64
Administrative access port for SSH. (1 - 65535, default = 22).
AdminSshV1 string
Enable/disable SSH v1 compatibility. Valid values: disable, enable.
AdminTelnetPort float64
Administrative access port for TELNET. (1 - 65535, default = 23).
Admintimeout float64
Number of minutes before an idle administrator session times out (5 - 480 minutes (8 hours), default = 5). A shorter idle timeout is more secure.
Adom string
Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
Devprof string
Devprof.
GuiDeviceLatitude string
Support meta variable Add the latitude of the location of this FortiGate to position it on the Threat Map.
GuiDeviceLongitude string
Support meta variable Add the longitude of the location of this FortiGate to position it on the Threat Map.
GuiIpv6 string
Enable/disable IPv6 settings on the GUI. Valid values: disable, enable.
GuiLinesPerPage float64
Number of lines to display per page for web administration.
GuiTheme string
Color scheme for the administration GUI. Valid values: blue, green, melongene, red, mariner, neutrino.
Hostname string
Support meta variable FortiGate unit's hostname. Most models will truncate names longer than 24 characters. Some models support hostnames up to 35 characters.
Language string
GUI display language. Valid values: english, simch, japanese, korean, spanish, trach, french, portuguese.
Scopetype string
The scope of application of the resource. Valid values: inherit, adom. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
SwitchController string
Enable/disable switch controller feature. Switch controller allows you to manage FortiSwitch from the FortiGate itself. Valid values: disable, enable.
SystempSystemGlobalId string
an identifier for the resource.
Timezones []string
Support meta variable Timezone database name. Enter ? to view the list of timezone.
adminHttpsRedirect String
Enable/disable redirection of HTTP administration access to HTTPS. Valid values: disable, enable.
adminPort Double
Administrative access port for HTTP. (1 - 65535, default = 80).
adminScp String
Enable/disable using SCP to download the system configuration. You can use SCP as an alternative method for backing up the configuration. Valid values: disable, enable.
adminSport Double
Administrative access port for HTTPS. (1 - 65535, default = 443).
adminSshPort Double
Administrative access port for SSH. (1 - 65535, default = 22).
adminSshV1 String
Enable/disable SSH v1 compatibility. Valid values: disable, enable.
adminTelnetPort Double
Administrative access port for TELNET. (1 - 65535, default = 23).
admintimeout Double
Number of minutes before an idle administrator session times out (5 - 480 minutes (8 hours), default = 5). A shorter idle timeout is more secure.
adom String
Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
devprof String
Devprof.
guiDeviceLatitude String
Support meta variable Add the latitude of the location of this FortiGate to position it on the Threat Map.
guiDeviceLongitude String
Support meta variable Add the longitude of the location of this FortiGate to position it on the Threat Map.
guiIpv6 String
Enable/disable IPv6 settings on the GUI. Valid values: disable, enable.
guiLinesPerPage Double
Number of lines to display per page for web administration.
guiTheme String
Color scheme for the administration GUI. Valid values: blue, green, melongene, red, mariner, neutrino.
hostname String
Support meta variable FortiGate unit's hostname. Most models will truncate names longer than 24 characters. Some models support hostnames up to 35 characters.
language String
GUI display language. Valid values: english, simch, japanese, korean, spanish, trach, french, portuguese.
scopetype String
The scope of application of the resource. Valid values: inherit, adom. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
switchController String
Enable/disable switch controller feature. Switch controller allows you to manage FortiSwitch from the FortiGate itself. Valid values: disable, enable.
systempSystemGlobalId String
an identifier for the resource.
timezones List<String>
Support meta variable Timezone database name. Enter ? to view the list of timezone.
adminHttpsRedirect string
Enable/disable redirection of HTTP administration access to HTTPS. Valid values: disable, enable.
adminPort number
Administrative access port for HTTP. (1 - 65535, default = 80).
adminScp string
Enable/disable using SCP to download the system configuration. You can use SCP as an alternative method for backing up the configuration. Valid values: disable, enable.
adminSport number
Administrative access port for HTTPS. (1 - 65535, default = 443).
adminSshPort number
Administrative access port for SSH. (1 - 65535, default = 22).
adminSshV1 string
Enable/disable SSH v1 compatibility. Valid values: disable, enable.
adminTelnetPort number
Administrative access port for TELNET. (1 - 65535, default = 23).
admintimeout number
Number of minutes before an idle administrator session times out (5 - 480 minutes (8 hours), default = 5). A shorter idle timeout is more secure.
adom string
Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
devprof string
Devprof.
guiDeviceLatitude string
Support meta variable Add the latitude of the location of this FortiGate to position it on the Threat Map.
guiDeviceLongitude string
Support meta variable Add the longitude of the location of this FortiGate to position it on the Threat Map.
guiIpv6 string
Enable/disable IPv6 settings on the GUI. Valid values: disable, enable.
guiLinesPerPage number
Number of lines to display per page for web administration.
guiTheme string
Color scheme for the administration GUI. Valid values: blue, green, melongene, red, mariner, neutrino.
hostname string
Support meta variable FortiGate unit's hostname. Most models will truncate names longer than 24 characters. Some models support hostnames up to 35 characters.
language string
GUI display language. Valid values: english, simch, japanese, korean, spanish, trach, french, portuguese.
scopetype string
The scope of application of the resource. Valid values: inherit, adom. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
switchController string
Enable/disable switch controller feature. Switch controller allows you to manage FortiSwitch from the FortiGate itself. Valid values: disable, enable.
systempSystemGlobalId string
an identifier for the resource.
timezones string[]
Support meta variable Timezone database name. Enter ? to view the list of timezone.
admin_https_redirect str
Enable/disable redirection of HTTP administration access to HTTPS. Valid values: disable, enable.
admin_port float
Administrative access port for HTTP. (1 - 65535, default = 80).
admin_scp str
Enable/disable using SCP to download the system configuration. You can use SCP as an alternative method for backing up the configuration. Valid values: disable, enable.
admin_sport float
Administrative access port for HTTPS. (1 - 65535, default = 443).
admin_ssh_port float
Administrative access port for SSH. (1 - 65535, default = 22).
admin_ssh_v1 str
Enable/disable SSH v1 compatibility. Valid values: disable, enable.
admin_telnet_port float
Administrative access port for TELNET. (1 - 65535, default = 23).
admintimeout float
Number of minutes before an idle administrator session times out (5 - 480 minutes (8 hours), default = 5). A shorter idle timeout is more secure.
adom str
Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
devprof str
Devprof.
gui_device_latitude str
Support meta variable Add the latitude of the location of this FortiGate to position it on the Threat Map.
gui_device_longitude str
Support meta variable Add the longitude of the location of this FortiGate to position it on the Threat Map.
gui_ipv6 str
Enable/disable IPv6 settings on the GUI. Valid values: disable, enable.
gui_lines_per_page float
Number of lines to display per page for web administration.
gui_theme str
Color scheme for the administration GUI. Valid values: blue, green, melongene, red, mariner, neutrino.
hostname str
Support meta variable FortiGate unit's hostname. Most models will truncate names longer than 24 characters. Some models support hostnames up to 35 characters.
language str
GUI display language. Valid values: english, simch, japanese, korean, spanish, trach, french, portuguese.
scopetype str
The scope of application of the resource. Valid values: inherit, adom. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
switch_controller str
Enable/disable switch controller feature. Switch controller allows you to manage FortiSwitch from the FortiGate itself. Valid values: disable, enable.
systemp_system_global_id str
an identifier for the resource.
timezones Sequence[str]
Support meta variable Timezone database name. Enter ? to view the list of timezone.
adminHttpsRedirect String
Enable/disable redirection of HTTP administration access to HTTPS. Valid values: disable, enable.
adminPort Number
Administrative access port for HTTP. (1 - 65535, default = 80).
adminScp String
Enable/disable using SCP to download the system configuration. You can use SCP as an alternative method for backing up the configuration. Valid values: disable, enable.
adminSport Number
Administrative access port for HTTPS. (1 - 65535, default = 443).
adminSshPort Number
Administrative access port for SSH. (1 - 65535, default = 22).
adminSshV1 String
Enable/disable SSH v1 compatibility. Valid values: disable, enable.
adminTelnetPort Number
Administrative access port for TELNET. (1 - 65535, default = 23).
admintimeout Number
Number of minutes before an idle administrator session times out (5 - 480 minutes (8 hours), default = 5). A shorter idle timeout is more secure.
adom String
Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
devprof String
Devprof.
guiDeviceLatitude String
Support meta variable Add the latitude of the location of this FortiGate to position it on the Threat Map.
guiDeviceLongitude String
Support meta variable Add the longitude of the location of this FortiGate to position it on the Threat Map.
guiIpv6 String
Enable/disable IPv6 settings on the GUI. Valid values: disable, enable.
guiLinesPerPage Number
Number of lines to display per page for web administration.
guiTheme String
Color scheme for the administration GUI. Valid values: blue, green, melongene, red, mariner, neutrino.
hostname String
Support meta variable FortiGate unit's hostname. Most models will truncate names longer than 24 characters. Some models support hostnames up to 35 characters.
language String
GUI display language. Valid values: english, simch, japanese, korean, spanish, trach, french, portuguese.
scopetype String
The scope of application of the resource. Valid values: inherit, adom. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
switchController String
Enable/disable switch controller feature. Switch controller allows you to manage FortiSwitch from the FortiGate itself. Valid values: disable, enable.
systempSystemGlobalId String
an identifier for the resource.
timezones List<String>
Support meta variable Timezone database name. Enter ? to view the list of timezone.

Import

Systemp SystemGlobal can be imported using any of these accepted formats:

Set import_options = [“devprof=YOUR_VALUE”] in the provider section.

$ export “FORTIMANAGER_IMPORT_TABLE”=“true”

$ pulumi import fortimanager:index/systempSystemGlobal:SystempSystemGlobal labelname SystempSystemGlobal
Copy

$ 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.