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",
});
import pulumi
import pulumi_fortimanager as fortimanager
trname = fortimanager.SystempSystemGlobal("trname",
admin_https_redirect="enable",
admin_port=80,
devprof="default")
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
})
}
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",
});
});
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());
}
}
resources:
trname:
type: fortimanager:SystempSystemGlobal
properties:
adminHttpsRedirect: enable
adminPort: 80
devprof: default
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,
switch_controller: 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,
gui_device_longitude: Optional[str] = None,
timezones: Optional[Sequence[str]] = None,
admin_scp: Optional[str] = None,
adom: 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,
admin_https_redirect: Optional[str] = None,
systemp_system_global_id: Optional[str] = None,
admin_port: Optional[float] = 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 string
- The unique name of the resource.
- args SystempSystemGlobalArgs
- 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 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 string
- The unique name of the resource.
- args SystempSystemGlobalArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args SystempSystemGlobalArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args 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",
SwitchController = "string",
AdminSport = 0,
AdminSshPort = 0,
AdminSshV1 = "string",
AdminTelnetPort = 0,
Admintimeout = 0,
GuiDeviceLongitude = "string",
Timezones = new[]
{
"string",
},
AdminScp = "string",
Adom = "string",
GuiIpv6 = "string",
GuiLinesPerPage = 0,
GuiTheme = "string",
Hostname = "string",
Language = "string",
Scopetype = "string",
AdminHttpsRedirect = "string",
SystempSystemGlobalId = "string",
AdminPort = 0,
});
example, err := fortimanager.NewSystempSystemGlobal(ctx, "systempSystemGlobalResource", &fortimanager.SystempSystemGlobalArgs{
Devprof: pulumi.String("string"),
GuiDeviceLatitude: pulumi.String("string"),
SwitchController: pulumi.String("string"),
AdminSport: pulumi.Float64(0),
AdminSshPort: pulumi.Float64(0),
AdminSshV1: pulumi.String("string"),
AdminTelnetPort: pulumi.Float64(0),
Admintimeout: pulumi.Float64(0),
GuiDeviceLongitude: pulumi.String("string"),
Timezones: pulumi.StringArray{
pulumi.String("string"),
},
AdminScp: pulumi.String("string"),
Adom: pulumi.String("string"),
GuiIpv6: pulumi.String("string"),
GuiLinesPerPage: pulumi.Float64(0),
GuiTheme: pulumi.String("string"),
Hostname: pulumi.String("string"),
Language: pulumi.String("string"),
Scopetype: pulumi.String("string"),
AdminHttpsRedirect: pulumi.String("string"),
SystempSystemGlobalId: pulumi.String("string"),
AdminPort: pulumi.Float64(0),
})
var systempSystemGlobalResource = new SystempSystemGlobal("systempSystemGlobalResource", SystempSystemGlobalArgs.builder()
.devprof("string")
.guiDeviceLatitude("string")
.switchController("string")
.adminSport(0)
.adminSshPort(0)
.adminSshV1("string")
.adminTelnetPort(0)
.admintimeout(0)
.guiDeviceLongitude("string")
.timezones("string")
.adminScp("string")
.adom("string")
.guiIpv6("string")
.guiLinesPerPage(0)
.guiTheme("string")
.hostname("string")
.language("string")
.scopetype("string")
.adminHttpsRedirect("string")
.systempSystemGlobalId("string")
.adminPort(0)
.build());
systemp_system_global_resource = fortimanager.SystempSystemGlobal("systempSystemGlobalResource",
devprof="string",
gui_device_latitude="string",
switch_controller="string",
admin_sport=0,
admin_ssh_port=0,
admin_ssh_v1="string",
admin_telnet_port=0,
admintimeout=0,
gui_device_longitude="string",
timezones=["string"],
admin_scp="string",
adom="string",
gui_ipv6="string",
gui_lines_per_page=0,
gui_theme="string",
hostname="string",
language="string",
scopetype="string",
admin_https_redirect="string",
systemp_system_global_id="string",
admin_port=0)
const systempSystemGlobalResource = new fortimanager.SystempSystemGlobal("systempSystemGlobalResource", {
devprof: "string",
guiDeviceLatitude: "string",
switchController: "string",
adminSport: 0,
adminSshPort: 0,
adminSshV1: "string",
adminTelnetPort: 0,
admintimeout: 0,
guiDeviceLongitude: "string",
timezones: ["string"],
adminScp: "string",
adom: "string",
guiIpv6: "string",
guiLinesPerPage: 0,
guiTheme: "string",
hostname: "string",
language: "string",
scopetype: "string",
adminHttpsRedirect: "string",
systempSystemGlobalId: "string",
adminPort: 0,
});
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
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 string
- Devprof.
- Admin
Https stringRedirect - Enable/disable redirection of HTTP administration access to HTTPS. Valid values:
disable
,enable
. - Admin
Port double - Administrative access port for HTTP. (1 - 65535, default = 80).
- Admin
Scp 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
. - Admin
Sport double - Administrative access port for HTTPS. (1 - 65535, default = 443).
- Admin
Ssh doublePort - Administrative access port for SSH. (1 - 65535, default = 22).
- Admin
Ssh stringV1 - Enable/disable SSH v1 compatibility. Valid values:
disable
,enable
. - Admin
Telnet doublePort - 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
isadom
, otherwise the value of adom in the provider will be inherited. - Gui
Device stringLatitude - Support meta variable Add the latitude of the location of this FortiGate to position it on the Threat Map.
- Gui
Device stringLongitude - Support meta variable Add the longitude of the location of this FortiGate to position it on the Threat Map.
- Gui
Ipv6 string - Enable/disable IPv6 settings on the GUI. Valid values:
disable
,enable
. - Gui
Lines doublePer Page - Number of lines to display per page for web administration.
- Gui
Theme 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
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - Switch
Controller string - Enable/disable switch controller feature. Switch controller allows you to manage FortiSwitch from the FortiGate itself. Valid values:
disable
,enable
. - Systemp
System stringGlobal Id - an identifier for the resource.
- Timezones List<string>
- Support meta variable Timezone database name. Enter ? to view the list of timezone.
- Devprof string
- Devprof.
- Admin
Https stringRedirect - Enable/disable redirection of HTTP administration access to HTTPS. Valid values:
disable
,enable
. - Admin
Port float64 - Administrative access port for HTTP. (1 - 65535, default = 80).
- Admin
Scp 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
. - Admin
Sport float64 - Administrative access port for HTTPS. (1 - 65535, default = 443).
- Admin
Ssh float64Port - Administrative access port for SSH. (1 - 65535, default = 22).
- Admin
Ssh stringV1 - Enable/disable SSH v1 compatibility. Valid values:
disable
,enable
. - Admin
Telnet float64Port - 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
isadom
, otherwise the value of adom in the provider will be inherited. - Gui
Device stringLatitude - Support meta variable Add the latitude of the location of this FortiGate to position it on the Threat Map.
- Gui
Device stringLongitude - Support meta variable Add the longitude of the location of this FortiGate to position it on the Threat Map.
- Gui
Ipv6 string - Enable/disable IPv6 settings on the GUI. Valid values:
disable
,enable
. - Gui
Lines float64Per Page - Number of lines to display per page for web administration.
- Gui
Theme 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
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - Switch
Controller string - Enable/disable switch controller feature. Switch controller allows you to manage FortiSwitch from the FortiGate itself. Valid values:
disable
,enable
. - Systemp
System stringGlobal Id - an identifier for the resource.
- Timezones []string
- Support meta variable Timezone database name. Enter ? to view the list of timezone.
- devprof String
- Devprof.
- admin
Https StringRedirect - Enable/disable redirection of HTTP administration access to HTTPS. Valid values:
disable
,enable
. - admin
Port Double - Administrative access port for HTTP. (1 - 65535, default = 80).
- admin
Scp 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
. - admin
Sport Double - Administrative access port for HTTPS. (1 - 65535, default = 443).
- admin
Ssh DoublePort - Administrative access port for SSH. (1 - 65535, default = 22).
- admin
Ssh StringV1 - Enable/disable SSH v1 compatibility. Valid values:
disable
,enable
. - admin
Telnet DoublePort - 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
isadom
, otherwise the value of adom in the provider will be inherited. - gui
Device StringLatitude - Support meta variable Add the latitude of the location of this FortiGate to position it on the Threat Map.
- gui
Device StringLongitude - Support meta variable Add the longitude of the location of this FortiGate to position it on the Threat Map.
- gui
Ipv6 String - Enable/disable IPv6 settings on the GUI. Valid values:
disable
,enable
. - gui
Lines DoublePer Page - Number of lines to display per page for web administration.
- gui
Theme 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
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - switch
Controller String - Enable/disable switch controller feature. Switch controller allows you to manage FortiSwitch from the FortiGate itself. Valid values:
disable
,enable
. - systemp
System StringGlobal Id - an identifier for the resource.
- timezones List<String>
- Support meta variable Timezone database name. Enter ? to view the list of timezone.
- devprof string
- Devprof.
- admin
Https stringRedirect - Enable/disable redirection of HTTP administration access to HTTPS. Valid values:
disable
,enable
. - admin
Port number - Administrative access port for HTTP. (1 - 65535, default = 80).
- admin
Scp 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
. - admin
Sport number - Administrative access port for HTTPS. (1 - 65535, default = 443).
- admin
Ssh numberPort - Administrative access port for SSH. (1 - 65535, default = 22).
- admin
Ssh stringV1 - Enable/disable SSH v1 compatibility. Valid values:
disable
,enable
. - admin
Telnet numberPort - 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
isadom
, otherwise the value of adom in the provider will be inherited. - gui
Device stringLatitude - Support meta variable Add the latitude of the location of this FortiGate to position it on the Threat Map.
- gui
Device stringLongitude - Support meta variable Add the longitude of the location of this FortiGate to position it on the Threat Map.
- gui
Ipv6 string - Enable/disable IPv6 settings on the GUI. Valid values:
disable
,enable
. - gui
Lines numberPer Page - Number of lines to display per page for web administration.
- gui
Theme 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
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - switch
Controller string - Enable/disable switch controller feature. Switch controller allows you to manage FortiSwitch from the FortiGate itself. Valid values:
disable
,enable
. - systemp
System stringGlobal Id - an identifier for the resource.
- timezones string[]
- Support meta variable Timezone database name. Enter ? to view the list of timezone.
- devprof str
- Devprof.
- admin_
https_ strredirect - 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_ floatport - Administrative access port for SSH. (1 - 65535, default = 22).
- admin_
ssh_ strv1 - Enable/disable SSH v1 compatibility. Valid values:
disable
,enable
. - admin_
telnet_ floatport - 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
isadom
, otherwise the value of adom in the provider will be inherited. - gui_
device_ strlatitude - Support meta variable Add the latitude of the location of this FortiGate to position it on the Threat Map.
- gui_
device_ strlongitude - 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_ floatper_ page - 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
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - 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_ strglobal_ id - an identifier for the resource.
- timezones Sequence[str]
- Support meta variable Timezone database name. Enter ? to view the list of timezone.
- devprof String
- Devprof.
- admin
Https StringRedirect - Enable/disable redirection of HTTP administration access to HTTPS. Valid values:
disable
,enable
. - admin
Port Number - Administrative access port for HTTP. (1 - 65535, default = 80).
- admin
Scp 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
. - admin
Sport Number - Administrative access port for HTTPS. (1 - 65535, default = 443).
- admin
Ssh NumberPort - Administrative access port for SSH. (1 - 65535, default = 22).
- admin
Ssh StringV1 - Enable/disable SSH v1 compatibility. Valid values:
disable
,enable
. - admin
Telnet NumberPort - 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
isadom
, otherwise the value of adom in the provider will be inherited. - gui
Device StringLatitude - Support meta variable Add the latitude of the location of this FortiGate to position it on the Threat Map.
- gui
Device StringLongitude - Support meta variable Add the longitude of the location of this FortiGate to position it on the Threat Map.
- gui
Ipv6 String - Enable/disable IPv6 settings on the GUI. Valid values:
disable
,enable
. - gui
Lines NumberPer Page - Number of lines to display per page for web administration.
- gui
Theme 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
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - switch
Controller String - Enable/disable switch controller feature. Switch controller allows you to manage FortiSwitch from the FortiGate itself. Valid values:
disable
,enable
. - systemp
System StringGlobal Id - 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
- 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.
- Admin
Https stringRedirect - Enable/disable redirection of HTTP administration access to HTTPS. Valid values:
disable
,enable
. - Admin
Port double - Administrative access port for HTTP. (1 - 65535, default = 80).
- Admin
Scp 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
. - Admin
Sport double - Administrative access port for HTTPS. (1 - 65535, default = 443).
- Admin
Ssh doublePort - Administrative access port for SSH. (1 - 65535, default = 22).
- Admin
Ssh stringV1 - Enable/disable SSH v1 compatibility. Valid values:
disable
,enable
. - Admin
Telnet doublePort - 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
isadom
, otherwise the value of adom in the provider will be inherited. - Devprof string
- Devprof.
- Gui
Device stringLatitude - Support meta variable Add the latitude of the location of this FortiGate to position it on the Threat Map.
- Gui
Device stringLongitude - Support meta variable Add the longitude of the location of this FortiGate to position it on the Threat Map.
- Gui
Ipv6 string - Enable/disable IPv6 settings on the GUI. Valid values:
disable
,enable
. - Gui
Lines doublePer Page - Number of lines to display per page for web administration.
- Gui
Theme 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
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - Switch
Controller string - Enable/disable switch controller feature. Switch controller allows you to manage FortiSwitch from the FortiGate itself. Valid values:
disable
,enable
. - Systemp
System stringGlobal Id - an identifier for the resource.
- Timezones List<string>
- Support meta variable Timezone database name. Enter ? to view the list of timezone.
- Admin
Https stringRedirect - Enable/disable redirection of HTTP administration access to HTTPS. Valid values:
disable
,enable
. - Admin
Port float64 - Administrative access port for HTTP. (1 - 65535, default = 80).
- Admin
Scp 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
. - Admin
Sport float64 - Administrative access port for HTTPS. (1 - 65535, default = 443).
- Admin
Ssh float64Port - Administrative access port for SSH. (1 - 65535, default = 22).
- Admin
Ssh stringV1 - Enable/disable SSH v1 compatibility. Valid values:
disable
,enable
. - Admin
Telnet float64Port - 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
isadom
, otherwise the value of adom in the provider will be inherited. - Devprof string
- Devprof.
- Gui
Device stringLatitude - Support meta variable Add the latitude of the location of this FortiGate to position it on the Threat Map.
- Gui
Device stringLongitude - Support meta variable Add the longitude of the location of this FortiGate to position it on the Threat Map.
- Gui
Ipv6 string - Enable/disable IPv6 settings on the GUI. Valid values:
disable
,enable
. - Gui
Lines float64Per Page - Number of lines to display per page for web administration.
- Gui
Theme 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
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - Switch
Controller string - Enable/disable switch controller feature. Switch controller allows you to manage FortiSwitch from the FortiGate itself. Valid values:
disable
,enable
. - Systemp
System stringGlobal Id - an identifier for the resource.
- Timezones []string
- Support meta variable Timezone database name. Enter ? to view the list of timezone.
- admin
Https StringRedirect - Enable/disable redirection of HTTP administration access to HTTPS. Valid values:
disable
,enable
. - admin
Port Double - Administrative access port for HTTP. (1 - 65535, default = 80).
- admin
Scp 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
. - admin
Sport Double - Administrative access port for HTTPS. (1 - 65535, default = 443).
- admin
Ssh DoublePort - Administrative access port for SSH. (1 - 65535, default = 22).
- admin
Ssh StringV1 - Enable/disable SSH v1 compatibility. Valid values:
disable
,enable
. - admin
Telnet DoublePort - 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
isadom
, otherwise the value of adom in the provider will be inherited. - devprof String
- Devprof.
- gui
Device StringLatitude - Support meta variable Add the latitude of the location of this FortiGate to position it on the Threat Map.
- gui
Device StringLongitude - Support meta variable Add the longitude of the location of this FortiGate to position it on the Threat Map.
- gui
Ipv6 String - Enable/disable IPv6 settings on the GUI. Valid values:
disable
,enable
. - gui
Lines DoublePer Page - Number of lines to display per page for web administration.
- gui
Theme 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
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - switch
Controller String - Enable/disable switch controller feature. Switch controller allows you to manage FortiSwitch from the FortiGate itself. Valid values:
disable
,enable
. - systemp
System StringGlobal Id - an identifier for the resource.
- timezones List<String>
- Support meta variable Timezone database name. Enter ? to view the list of timezone.
- admin
Https stringRedirect - Enable/disable redirection of HTTP administration access to HTTPS. Valid values:
disable
,enable
. - admin
Port number - Administrative access port for HTTP. (1 - 65535, default = 80).
- admin
Scp 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
. - admin
Sport number - Administrative access port for HTTPS. (1 - 65535, default = 443).
- admin
Ssh numberPort - Administrative access port for SSH. (1 - 65535, default = 22).
- admin
Ssh stringV1 - Enable/disable SSH v1 compatibility. Valid values:
disable
,enable
. - admin
Telnet numberPort - 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
isadom
, otherwise the value of adom in the provider will be inherited. - devprof string
- Devprof.
- gui
Device stringLatitude - Support meta variable Add the latitude of the location of this FortiGate to position it on the Threat Map.
- gui
Device stringLongitude - Support meta variable Add the longitude of the location of this FortiGate to position it on the Threat Map.
- gui
Ipv6 string - Enable/disable IPv6 settings on the GUI. Valid values:
disable
,enable
. - gui
Lines numberPer Page - Number of lines to display per page for web administration.
- gui
Theme 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
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - switch
Controller string - Enable/disable switch controller feature. Switch controller allows you to manage FortiSwitch from the FortiGate itself. Valid values:
disable
,enable
. - systemp
System stringGlobal Id - an identifier for the resource.
- timezones string[]
- Support meta variable Timezone database name. Enter ? to view the list of timezone.
- admin_
https_ strredirect - 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_ floatport - Administrative access port for SSH. (1 - 65535, default = 22).
- admin_
ssh_ strv1 - Enable/disable SSH v1 compatibility. Valid values:
disable
,enable
. - admin_
telnet_ floatport - 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
isadom
, otherwise the value of adom in the provider will be inherited. - devprof str
- Devprof.
- gui_
device_ strlatitude - Support meta variable Add the latitude of the location of this FortiGate to position it on the Threat Map.
- gui_
device_ strlongitude - 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_ floatper_ page - 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
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - 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_ strglobal_ id - an identifier for the resource.
- timezones Sequence[str]
- Support meta variable Timezone database name. Enter ? to view the list of timezone.
- admin
Https StringRedirect - Enable/disable redirection of HTTP administration access to HTTPS. Valid values:
disable
,enable
. - admin
Port Number - Administrative access port for HTTP. (1 - 65535, default = 80).
- admin
Scp 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
. - admin
Sport Number - Administrative access port for HTTPS. (1 - 65535, default = 443).
- admin
Ssh NumberPort - Administrative access port for SSH. (1 - 65535, default = 22).
- admin
Ssh StringV1 - Enable/disable SSH v1 compatibility. Valid values:
disable
,enable
. - admin
Telnet NumberPort - 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
isadom
, otherwise the value of adom in the provider will be inherited. - devprof String
- Devprof.
- gui
Device StringLatitude - Support meta variable Add the latitude of the location of this FortiGate to position it on the Threat Map.
- gui
Device StringLongitude - Support meta variable Add the longitude of the location of this FortiGate to position it on the Threat Map.
- gui
Ipv6 String - Enable/disable IPv6 settings on the GUI. Valid values:
disable
,enable
. - gui
Lines NumberPer Page - Number of lines to display per page for web administration.
- gui
Theme 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
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - switch
Controller String - Enable/disable switch controller feature. Switch controller allows you to manage FortiSwitch from the FortiGate itself. Valid values:
disable
,enable
. - systemp
System StringGlobal Id - 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
$ 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.