fortimanager.SystempSystemNtp
Explore with Pulumi AI
Configure system NTP information.
The following variables have sub resource. Avoid using them together, otherwise conflicts and overwrites may occur.
ntpserver
:fortimanager.SystempSystemNtpNtpserver
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as fortimanager from "@pulumi/fortimanager";
const trname = new fortimanager.SystempSystemNtp("trname", {
authentication: "disable",
devprof: "default",
});
import pulumi
import pulumi_fortimanager as fortimanager
trname = fortimanager.SystempSystemNtp("trname",
authentication="disable",
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.NewSystempSystemNtp(ctx, "trname", &fortimanager.SystempSystemNtpArgs{
Authentication: pulumi.String("disable"),
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.SystempSystemNtp("trname", new()
{
Authentication = "disable",
Devprof = "default",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.fortimanager.SystempSystemNtp;
import com.pulumi.fortimanager.SystempSystemNtpArgs;
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 SystempSystemNtp("trname", SystempSystemNtpArgs.builder()
.authentication("disable")
.devprof("default")
.build());
}
}
resources:
trname:
type: fortimanager:SystempSystemNtp
properties:
authentication: disable
devprof: default
Create SystempSystemNtp Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new SystempSystemNtp(name: string, args: SystempSystemNtpArgs, opts?: CustomResourceOptions);
@overload
def SystempSystemNtp(resource_name: str,
args: SystempSystemNtpArgs,
opts: Optional[ResourceOptions] = None)
@overload
def SystempSystemNtp(resource_name: str,
opts: Optional[ResourceOptions] = None,
devprof: Optional[str] = None,
ntpservers: Optional[Sequence[SystempSystemNtpNtpserverArgs]] = None,
keys: Optional[Sequence[str]] = None,
dynamic_sort_subtable: Optional[str] = None,
interfaces: Optional[Sequence[str]] = None,
ntpsync: Optional[str] = None,
key_type: Optional[str] = None,
authentication: Optional[str] = None,
adom: Optional[str] = None,
key_id: Optional[float] = None,
scopetype: Optional[str] = None,
server_mode: Optional[str] = None,
source_ip: Optional[str] = None,
source_ip6: Optional[str] = None,
syncinterval: Optional[float] = None,
systemp_system_ntp_id: Optional[str] = None,
type: Optional[str] = None)
func NewSystempSystemNtp(ctx *Context, name string, args SystempSystemNtpArgs, opts ...ResourceOption) (*SystempSystemNtp, error)
public SystempSystemNtp(string name, SystempSystemNtpArgs args, CustomResourceOptions? opts = null)
public SystempSystemNtp(String name, SystempSystemNtpArgs args)
public SystempSystemNtp(String name, SystempSystemNtpArgs args, CustomResourceOptions options)
type: fortimanager:SystempSystemNtp
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 SystempSystemNtpArgs
- 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 SystempSystemNtpArgs
- 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 SystempSystemNtpArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args SystempSystemNtpArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args SystempSystemNtpArgs
- 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 systempSystemNtpResource = new Fortimanager.SystempSystemNtp("systempSystemNtpResource", new()
{
Devprof = "string",
Ntpservers = new[]
{
new Fortimanager.Inputs.SystempSystemNtpNtpserverArgs
{
Authentication = "string",
Id = 0,
Interface = "string",
InterfaceSelectMethod = "string",
IpType = "string",
KeyId = 0,
KeyType = "string",
Keys = new[]
{
"string",
},
Ntpv3 = "string",
Server = "string",
},
},
Keys = new[]
{
"string",
},
DynamicSortSubtable = "string",
Interfaces = new[]
{
"string",
},
Ntpsync = "string",
KeyType = "string",
Authentication = "string",
Adom = "string",
KeyId = 0,
Scopetype = "string",
ServerMode = "string",
SourceIp = "string",
SourceIp6 = "string",
Syncinterval = 0,
SystempSystemNtpId = "string",
Type = "string",
});
example, err := fortimanager.NewSystempSystemNtp(ctx, "systempSystemNtpResource", &fortimanager.SystempSystemNtpArgs{
Devprof: pulumi.String("string"),
Ntpservers: .SystempSystemNtpNtpserverTypeArray{
&.SystempSystemNtpNtpserverTypeArgs{
Authentication: pulumi.String("string"),
Id: pulumi.Float64(0),
Interface: pulumi.String("string"),
InterfaceSelectMethod: pulumi.String("string"),
IpType: pulumi.String("string"),
KeyId: pulumi.Float64(0),
KeyType: pulumi.String("string"),
Keys: pulumi.StringArray{
pulumi.String("string"),
},
Ntpv3: pulumi.String("string"),
Server: pulumi.String("string"),
},
},
Keys: pulumi.StringArray{
pulumi.String("string"),
},
DynamicSortSubtable: pulumi.String("string"),
Interfaces: pulumi.StringArray{
pulumi.String("string"),
},
Ntpsync: pulumi.String("string"),
KeyType: pulumi.String("string"),
Authentication: pulumi.String("string"),
Adom: pulumi.String("string"),
KeyId: pulumi.Float64(0),
Scopetype: pulumi.String("string"),
ServerMode: pulumi.String("string"),
SourceIp: pulumi.String("string"),
SourceIp6: pulumi.String("string"),
Syncinterval: pulumi.Float64(0),
SystempSystemNtpId: pulumi.String("string"),
Type: pulumi.String("string"),
})
var systempSystemNtpResource = new SystempSystemNtp("systempSystemNtpResource", SystempSystemNtpArgs.builder()
.devprof("string")
.ntpservers(SystempSystemNtpNtpserverArgs.builder()
.authentication("string")
.id(0)
.interface_("string")
.interfaceSelectMethod("string")
.ipType("string")
.keyId(0)
.keyType("string")
.keys("string")
.ntpv3("string")
.server("string")
.build())
.keys("string")
.dynamicSortSubtable("string")
.interfaces("string")
.ntpsync("string")
.keyType("string")
.authentication("string")
.adom("string")
.keyId(0)
.scopetype("string")
.serverMode("string")
.sourceIp("string")
.sourceIp6("string")
.syncinterval(0)
.systempSystemNtpId("string")
.type("string")
.build());
systemp_system_ntp_resource = fortimanager.SystempSystemNtp("systempSystemNtpResource",
devprof="string",
ntpservers=[{
"authentication": "string",
"id": 0,
"interface": "string",
"interface_select_method": "string",
"ip_type": "string",
"key_id": 0,
"key_type": "string",
"keys": ["string"],
"ntpv3": "string",
"server": "string",
}],
keys=["string"],
dynamic_sort_subtable="string",
interfaces=["string"],
ntpsync="string",
key_type="string",
authentication="string",
adom="string",
key_id=0,
scopetype="string",
server_mode="string",
source_ip="string",
source_ip6="string",
syncinterval=0,
systemp_system_ntp_id="string",
type="string")
const systempSystemNtpResource = new fortimanager.SystempSystemNtp("systempSystemNtpResource", {
devprof: "string",
ntpservers: [{
authentication: "string",
id: 0,
"interface": "string",
interfaceSelectMethod: "string",
ipType: "string",
keyId: 0,
keyType: "string",
keys: ["string"],
ntpv3: "string",
server: "string",
}],
keys: ["string"],
dynamicSortSubtable: "string",
interfaces: ["string"],
ntpsync: "string",
keyType: "string",
authentication: "string",
adom: "string",
keyId: 0,
scopetype: "string",
serverMode: "string",
sourceIp: "string",
sourceIp6: "string",
syncinterval: 0,
systempSystemNtpId: "string",
type: "string",
});
type: fortimanager:SystempSystemNtp
properties:
adom: string
authentication: string
devprof: string
dynamicSortSubtable: string
interfaces:
- string
keyId: 0
keyType: string
keys:
- string
ntpservers:
- authentication: string
id: 0
interface: string
interfaceSelectMethod: string
ipType: string
keyId: 0
keyType: string
keys:
- string
ntpv3: string
server: string
ntpsync: string
scopetype: string
serverMode: string
sourceIp: string
sourceIp6: string
syncinterval: 0
systempSystemNtpId: string
type: string
SystempSystemNtp 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 SystempSystemNtp resource accepts the following input properties:
- Devprof string
- Devprof.
- Adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - Authentication string
- Enable/disable authentication. Valid values:
disable
,enable
. - Dynamic
Sort stringSubtable - true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
- Interfaces List<string>
- Support meta variable FortiGate interface(s) with NTP server mode enabled. Devices on your network can contact these interfaces for NTP services.
- Key
Id double - Key ID for authentication.
- Key
Type string - Key type for authentication (MD5, SHA1). Valid values:
MD5
,SHA1
. - Keys List<string>
- Key for authentication.
- Ntpservers
List<Systemp
System Ntp Ntpserver> - Ntpserver. The structure of
ntpserver
block is documented below. - Ntpsync string
- Enable/disable setting the FortiGate system time by synchronizing with an NTP Server. Valid values:
disable
,enable
. - 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
. - Server
Mode string - Enable/disable FortiGate NTP Server Mode. Your FortiGate becomes an NTP server for other devices on your network. The FortiGate relays NTP requests to its configured NTP server. Valid values:
disable
,enable
. - Source
Ip string - Support meta variable Source IP address for communication to the NTP server.
- Source
Ip6 string - Source IPv6 address for communication to the NTP server.
- Syncinterval double
- NTP synchronization interval (1 - 1440 min).
- Systemp
System stringNtp Id - an identifier for the resource.
- Type string
- Use the FortiGuard NTP server or any other available NTP Server. Valid values:
fortiguard
,custom
.
- Devprof string
- Devprof.
- Adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - Authentication string
- Enable/disable authentication. Valid values:
disable
,enable
. - Dynamic
Sort stringSubtable - true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
- Interfaces []string
- Support meta variable FortiGate interface(s) with NTP server mode enabled. Devices on your network can contact these interfaces for NTP services.
- Key
Id float64 - Key ID for authentication.
- Key
Type string - Key type for authentication (MD5, SHA1). Valid values:
MD5
,SHA1
. - Keys []string
- Key for authentication.
- Ntpservers
[]Systemp
System Ntp Ntpserver Type Args - Ntpserver. The structure of
ntpserver
block is documented below. - Ntpsync string
- Enable/disable setting the FortiGate system time by synchronizing with an NTP Server. Valid values:
disable
,enable
. - 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
. - Server
Mode string - Enable/disable FortiGate NTP Server Mode. Your FortiGate becomes an NTP server for other devices on your network. The FortiGate relays NTP requests to its configured NTP server. Valid values:
disable
,enable
. - Source
Ip string - Support meta variable Source IP address for communication to the NTP server.
- Source
Ip6 string - Source IPv6 address for communication to the NTP server.
- Syncinterval float64
- NTP synchronization interval (1 - 1440 min).
- Systemp
System stringNtp Id - an identifier for the resource.
- Type string
- Use the FortiGuard NTP server or any other available NTP Server. Valid values:
fortiguard
,custom
.
- devprof String
- Devprof.
- adom String
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - authentication String
- Enable/disable authentication. Valid values:
disable
,enable
. - dynamic
Sort StringSubtable - true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
- interfaces List<String>
- Support meta variable FortiGate interface(s) with NTP server mode enabled. Devices on your network can contact these interfaces for NTP services.
- key
Id Double - Key ID for authentication.
- key
Type String - Key type for authentication (MD5, SHA1). Valid values:
MD5
,SHA1
. - keys List<String>
- Key for authentication.
- ntpservers
List<Systemp
System Ntp Ntpserver> - Ntpserver. The structure of
ntpserver
block is documented below. - ntpsync String
- Enable/disable setting the FortiGate system time by synchronizing with an NTP Server. Valid values:
disable
,enable
. - 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
. - server
Mode String - Enable/disable FortiGate NTP Server Mode. Your FortiGate becomes an NTP server for other devices on your network. The FortiGate relays NTP requests to its configured NTP server. Valid values:
disable
,enable
. - source
Ip String - Support meta variable Source IP address for communication to the NTP server.
- source
Ip6 String - Source IPv6 address for communication to the NTP server.
- syncinterval Double
- NTP synchronization interval (1 - 1440 min).
- systemp
System StringNtp Id - an identifier for the resource.
- type String
- Use the FortiGuard NTP server or any other available NTP Server. Valid values:
fortiguard
,custom
.
- devprof string
- Devprof.
- adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - authentication string
- Enable/disable authentication. Valid values:
disable
,enable
. - dynamic
Sort stringSubtable - true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
- interfaces string[]
- Support meta variable FortiGate interface(s) with NTP server mode enabled. Devices on your network can contact these interfaces for NTP services.
- key
Id number - Key ID for authentication.
- key
Type string - Key type for authentication (MD5, SHA1). Valid values:
MD5
,SHA1
. - keys string[]
- Key for authentication.
- ntpservers
Systemp
System Ntp Ntpserver[] - Ntpserver. The structure of
ntpserver
block is documented below. - ntpsync string
- Enable/disable setting the FortiGate system time by synchronizing with an NTP Server. Valid values:
disable
,enable
. - 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
. - server
Mode string - Enable/disable FortiGate NTP Server Mode. Your FortiGate becomes an NTP server for other devices on your network. The FortiGate relays NTP requests to its configured NTP server. Valid values:
disable
,enable
. - source
Ip string - Support meta variable Source IP address for communication to the NTP server.
- source
Ip6 string - Source IPv6 address for communication to the NTP server.
- syncinterval number
- NTP synchronization interval (1 - 1440 min).
- systemp
System stringNtp Id - an identifier for the resource.
- type string
- Use the FortiGuard NTP server or any other available NTP Server. Valid values:
fortiguard
,custom
.
- devprof str
- Devprof.
- adom str
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - authentication str
- Enable/disable authentication. Valid values:
disable
,enable
. - dynamic_
sort_ strsubtable - true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
- interfaces Sequence[str]
- Support meta variable FortiGate interface(s) with NTP server mode enabled. Devices on your network can contact these interfaces for NTP services.
- key_
id float - Key ID for authentication.
- key_
type str - Key type for authentication (MD5, SHA1). Valid values:
MD5
,SHA1
. - keys Sequence[str]
- Key for authentication.
- ntpservers
Sequence[Systemp
System Ntp Ntpserver Args] - Ntpserver. The structure of
ntpserver
block is documented below. - ntpsync str
- Enable/disable setting the FortiGate system time by synchronizing with an NTP Server. Valid values:
disable
,enable
. - 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
. - server_
mode str - Enable/disable FortiGate NTP Server Mode. Your FortiGate becomes an NTP server for other devices on your network. The FortiGate relays NTP requests to its configured NTP server. Valid values:
disable
,enable
. - source_
ip str - Support meta variable Source IP address for communication to the NTP server.
- source_
ip6 str - Source IPv6 address for communication to the NTP server.
- syncinterval float
- NTP synchronization interval (1 - 1440 min).
- systemp_
system_ strntp_ id - an identifier for the resource.
- type str
- Use the FortiGuard NTP server or any other available NTP Server. Valid values:
fortiguard
,custom
.
- devprof String
- Devprof.
- adom String
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - authentication String
- Enable/disable authentication. Valid values:
disable
,enable
. - dynamic
Sort StringSubtable - true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
- interfaces List<String>
- Support meta variable FortiGate interface(s) with NTP server mode enabled. Devices on your network can contact these interfaces for NTP services.
- key
Id Number - Key ID for authentication.
- key
Type String - Key type for authentication (MD5, SHA1). Valid values:
MD5
,SHA1
. - keys List<String>
- Key for authentication.
- ntpservers List<Property Map>
- Ntpserver. The structure of
ntpserver
block is documented below. - ntpsync String
- Enable/disable setting the FortiGate system time by synchronizing with an NTP Server. Valid values:
disable
,enable
. - 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
. - server
Mode String - Enable/disable FortiGate NTP Server Mode. Your FortiGate becomes an NTP server for other devices on your network. The FortiGate relays NTP requests to its configured NTP server. Valid values:
disable
,enable
. - source
Ip String - Support meta variable Source IP address for communication to the NTP server.
- source
Ip6 String - Source IPv6 address for communication to the NTP server.
- syncinterval Number
- NTP synchronization interval (1 - 1440 min).
- systemp
System StringNtp Id - an identifier for the resource.
- type String
- Use the FortiGuard NTP server or any other available NTP Server. Valid values:
fortiguard
,custom
.
Outputs
All input properties are implicitly available as output properties. Additionally, the SystempSystemNtp 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 SystempSystemNtp Resource
Get an existing SystempSystemNtp 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?: SystempSystemNtpState, opts?: CustomResourceOptions): SystempSystemNtp
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
adom: Optional[str] = None,
authentication: Optional[str] = None,
devprof: Optional[str] = None,
dynamic_sort_subtable: Optional[str] = None,
interfaces: Optional[Sequence[str]] = None,
key_id: Optional[float] = None,
key_type: Optional[str] = None,
keys: Optional[Sequence[str]] = None,
ntpservers: Optional[Sequence[SystempSystemNtpNtpserverArgs]] = None,
ntpsync: Optional[str] = None,
scopetype: Optional[str] = None,
server_mode: Optional[str] = None,
source_ip: Optional[str] = None,
source_ip6: Optional[str] = None,
syncinterval: Optional[float] = None,
systemp_system_ntp_id: Optional[str] = None,
type: Optional[str] = None) -> SystempSystemNtp
func GetSystempSystemNtp(ctx *Context, name string, id IDInput, state *SystempSystemNtpState, opts ...ResourceOption) (*SystempSystemNtp, error)
public static SystempSystemNtp Get(string name, Input<string> id, SystempSystemNtpState? state, CustomResourceOptions? opts = null)
public static SystempSystemNtp get(String name, Output<String> id, SystempSystemNtpState state, CustomResourceOptions options)
resources: _: type: fortimanager:SystempSystemNtp 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. - Authentication string
- Enable/disable authentication. Valid values:
disable
,enable
. - Devprof string
- Devprof.
- Dynamic
Sort stringSubtable - true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
- Interfaces List<string>
- Support meta variable FortiGate interface(s) with NTP server mode enabled. Devices on your network can contact these interfaces for NTP services.
- Key
Id double - Key ID for authentication.
- Key
Type string - Key type for authentication (MD5, SHA1). Valid values:
MD5
,SHA1
. - Keys List<string>
- Key for authentication.
- Ntpservers
List<Systemp
System Ntp Ntpserver> - Ntpserver. The structure of
ntpserver
block is documented below. - Ntpsync string
- Enable/disable setting the FortiGate system time by synchronizing with an NTP Server. Valid values:
disable
,enable
. - 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
. - Server
Mode string - Enable/disable FortiGate NTP Server Mode. Your FortiGate becomes an NTP server for other devices on your network. The FortiGate relays NTP requests to its configured NTP server. Valid values:
disable
,enable
. - Source
Ip string - Support meta variable Source IP address for communication to the NTP server.
- Source
Ip6 string - Source IPv6 address for communication to the NTP server.
- Syncinterval double
- NTP synchronization interval (1 - 1440 min).
- Systemp
System stringNtp Id - an identifier for the resource.
- Type string
- Use the FortiGuard NTP server or any other available NTP Server. Valid values:
fortiguard
,custom
.
- Adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - Authentication string
- Enable/disable authentication. Valid values:
disable
,enable
. - Devprof string
- Devprof.
- Dynamic
Sort stringSubtable - true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
- Interfaces []string
- Support meta variable FortiGate interface(s) with NTP server mode enabled. Devices on your network can contact these interfaces for NTP services.
- Key
Id float64 - Key ID for authentication.
- Key
Type string - Key type for authentication (MD5, SHA1). Valid values:
MD5
,SHA1
. - Keys []string
- Key for authentication.
- Ntpservers
[]Systemp
System Ntp Ntpserver Type Args - Ntpserver. The structure of
ntpserver
block is documented below. - Ntpsync string
- Enable/disable setting the FortiGate system time by synchronizing with an NTP Server. Valid values:
disable
,enable
. - 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
. - Server
Mode string - Enable/disable FortiGate NTP Server Mode. Your FortiGate becomes an NTP server for other devices on your network. The FortiGate relays NTP requests to its configured NTP server. Valid values:
disable
,enable
. - Source
Ip string - Support meta variable Source IP address for communication to the NTP server.
- Source
Ip6 string - Source IPv6 address for communication to the NTP server.
- Syncinterval float64
- NTP synchronization interval (1 - 1440 min).
- Systemp
System stringNtp Id - an identifier for the resource.
- Type string
- Use the FortiGuard NTP server or any other available NTP Server. Valid values:
fortiguard
,custom
.
- adom String
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - authentication String
- Enable/disable authentication. Valid values:
disable
,enable
. - devprof String
- Devprof.
- dynamic
Sort StringSubtable - true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
- interfaces List<String>
- Support meta variable FortiGate interface(s) with NTP server mode enabled. Devices on your network can contact these interfaces for NTP services.
- key
Id Double - Key ID for authentication.
- key
Type String - Key type for authentication (MD5, SHA1). Valid values:
MD5
,SHA1
. - keys List<String>
- Key for authentication.
- ntpservers
List<Systemp
System Ntp Ntpserver> - Ntpserver. The structure of
ntpserver
block is documented below. - ntpsync String
- Enable/disable setting the FortiGate system time by synchronizing with an NTP Server. Valid values:
disable
,enable
. - 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
. - server
Mode String - Enable/disable FortiGate NTP Server Mode. Your FortiGate becomes an NTP server for other devices on your network. The FortiGate relays NTP requests to its configured NTP server. Valid values:
disable
,enable
. - source
Ip String - Support meta variable Source IP address for communication to the NTP server.
- source
Ip6 String - Source IPv6 address for communication to the NTP server.
- syncinterval Double
- NTP synchronization interval (1 - 1440 min).
- systemp
System StringNtp Id - an identifier for the resource.
- type String
- Use the FortiGuard NTP server or any other available NTP Server. Valid values:
fortiguard
,custom
.
- adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - authentication string
- Enable/disable authentication. Valid values:
disable
,enable
. - devprof string
- Devprof.
- dynamic
Sort stringSubtable - true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
- interfaces string[]
- Support meta variable FortiGate interface(s) with NTP server mode enabled. Devices on your network can contact these interfaces for NTP services.
- key
Id number - Key ID for authentication.
- key
Type string - Key type for authentication (MD5, SHA1). Valid values:
MD5
,SHA1
. - keys string[]
- Key for authentication.
- ntpservers
Systemp
System Ntp Ntpserver[] - Ntpserver. The structure of
ntpserver
block is documented below. - ntpsync string
- Enable/disable setting the FortiGate system time by synchronizing with an NTP Server. Valid values:
disable
,enable
. - 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
. - server
Mode string - Enable/disable FortiGate NTP Server Mode. Your FortiGate becomes an NTP server for other devices on your network. The FortiGate relays NTP requests to its configured NTP server. Valid values:
disable
,enable
. - source
Ip string - Support meta variable Source IP address for communication to the NTP server.
- source
Ip6 string - Source IPv6 address for communication to the NTP server.
- syncinterval number
- NTP synchronization interval (1 - 1440 min).
- systemp
System stringNtp Id - an identifier for the resource.
- type string
- Use the FortiGuard NTP server or any other available NTP Server. Valid values:
fortiguard
,custom
.
- adom str
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - authentication str
- Enable/disable authentication. Valid values:
disable
,enable
. - devprof str
- Devprof.
- dynamic_
sort_ strsubtable - true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
- interfaces Sequence[str]
- Support meta variable FortiGate interface(s) with NTP server mode enabled. Devices on your network can contact these interfaces for NTP services.
- key_
id float - Key ID for authentication.
- key_
type str - Key type for authentication (MD5, SHA1). Valid values:
MD5
,SHA1
. - keys Sequence[str]
- Key for authentication.
- ntpservers
Sequence[Systemp
System Ntp Ntpserver Args] - Ntpserver. The structure of
ntpserver
block is documented below. - ntpsync str
- Enable/disable setting the FortiGate system time by synchronizing with an NTP Server. Valid values:
disable
,enable
. - 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
. - server_
mode str - Enable/disable FortiGate NTP Server Mode. Your FortiGate becomes an NTP server for other devices on your network. The FortiGate relays NTP requests to its configured NTP server. Valid values:
disable
,enable
. - source_
ip str - Support meta variable Source IP address for communication to the NTP server.
- source_
ip6 str - Source IPv6 address for communication to the NTP server.
- syncinterval float
- NTP synchronization interval (1 - 1440 min).
- systemp_
system_ strntp_ id - an identifier for the resource.
- type str
- Use the FortiGuard NTP server or any other available NTP Server. Valid values:
fortiguard
,custom
.
- adom String
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - authentication String
- Enable/disable authentication. Valid values:
disable
,enable
. - devprof String
- Devprof.
- dynamic
Sort StringSubtable - true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
- interfaces List<String>
- Support meta variable FortiGate interface(s) with NTP server mode enabled. Devices on your network can contact these interfaces for NTP services.
- key
Id Number - Key ID for authentication.
- key
Type String - Key type for authentication (MD5, SHA1). Valid values:
MD5
,SHA1
. - keys List<String>
- Key for authentication.
- ntpservers List<Property Map>
- Ntpserver. The structure of
ntpserver
block is documented below. - ntpsync String
- Enable/disable setting the FortiGate system time by synchronizing with an NTP Server. Valid values:
disable
,enable
. - 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
. - server
Mode String - Enable/disable FortiGate NTP Server Mode. Your FortiGate becomes an NTP server for other devices on your network. The FortiGate relays NTP requests to its configured NTP server. Valid values:
disable
,enable
. - source
Ip String - Support meta variable Source IP address for communication to the NTP server.
- source
Ip6 String - Source IPv6 address for communication to the NTP server.
- syncinterval Number
- NTP synchronization interval (1 - 1440 min).
- systemp
System StringNtp Id - an identifier for the resource.
- type String
- Use the FortiGuard NTP server or any other available NTP Server. Valid values:
fortiguard
,custom
.
Supporting Types
SystempSystemNtpNtpserver, SystempSystemNtpNtpserverArgs
- Authentication string
- Enable/disable MD5(NTPv3)/SHA1(NTPv4) authentication. Valid values:
disable
,enable
. - Id double
- NTP server ID.
- 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
. - Ip
Type string - Choose to connect to IPv4 or/and IPv6 NTP server. Valid values:
IPv6
,IPv4
,Both
. - Key
Id double - Key ID for authentication.
- Key
Type string - Select NTP authentication type. Valid values:
SHA1
,SHA256
,MD5
. - Keys List<string>
- Key for MD5(NTPv3)/SHA1(NTPv4) authentication.
- Ntpv3 string
- Enable to use NTPv3 instead of NTPv4. Valid values:
disable
,enable
. - Server string
- IP address or hostname of the NTP Server.
- Authentication string
- Enable/disable MD5(NTPv3)/SHA1(NTPv4) authentication. Valid values:
disable
,enable
. - Id float64
- NTP server ID.
- 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
. - Ip
Type string - Choose to connect to IPv4 or/and IPv6 NTP server. Valid values:
IPv6
,IPv4
,Both
. - Key
Id float64 - Key ID for authentication.
- Key
Type string - Select NTP authentication type. Valid values:
SHA1
,SHA256
,MD5
. - Keys []string
- Key for MD5(NTPv3)/SHA1(NTPv4) authentication.
- Ntpv3 string
- Enable to use NTPv3 instead of NTPv4. Valid values:
disable
,enable
. - Server string
- IP address or hostname of the NTP Server.
- authentication String
- Enable/disable MD5(NTPv3)/SHA1(NTPv4) authentication. Valid values:
disable
,enable
. - id Double
- NTP server ID.
- 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.
- ip
Type String - Choose to connect to IPv4 or/and IPv6 NTP server. Valid values:
IPv6
,IPv4
,Both
. - key
Id Double - Key ID for authentication.
- key
Type String - Select NTP authentication type. Valid values:
SHA1
,SHA256
,MD5
. - keys List<String>
- Key for MD5(NTPv3)/SHA1(NTPv4) authentication.
- ntpv3 String
- Enable to use NTPv3 instead of NTPv4. Valid values:
disable
,enable
. - server String
- IP address or hostname of the NTP Server.
- authentication string
- Enable/disable MD5(NTPv3)/SHA1(NTPv4) authentication. Valid values:
disable
,enable
. - id number
- NTP server ID.
- 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
. - ip
Type string - Choose to connect to IPv4 or/and IPv6 NTP server. Valid values:
IPv6
,IPv4
,Both
. - key
Id number - Key ID for authentication.
- key
Type string - Select NTP authentication type. Valid values:
SHA1
,SHA256
,MD5
. - keys string[]
- Key for MD5(NTPv3)/SHA1(NTPv4) authentication.
- ntpv3 string
- Enable to use NTPv3 instead of NTPv4. Valid values:
disable
,enable
. - server string
- IP address or hostname of the NTP Server.
- authentication str
- Enable/disable MD5(NTPv3)/SHA1(NTPv4) authentication. Valid values:
disable
,enable
. - id float
- NTP server ID.
- 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
. - ip_
type str - Choose to connect to IPv4 or/and IPv6 NTP server. Valid values:
IPv6
,IPv4
,Both
. - key_
id float - Key ID for authentication.
- key_
type str - Select NTP authentication type. Valid values:
SHA1
,SHA256
,MD5
. - keys Sequence[str]
- Key for MD5(NTPv3)/SHA1(NTPv4) authentication.
- ntpv3 str
- Enable to use NTPv3 instead of NTPv4. Valid values:
disable
,enable
. - server str
- IP address or hostname of the NTP Server.
- authentication String
- Enable/disable MD5(NTPv3)/SHA1(NTPv4) authentication. Valid values:
disable
,enable
. - id Number
- NTP server ID.
- 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
. - ip
Type String - Choose to connect to IPv4 or/and IPv6 NTP server. Valid values:
IPv6
,IPv4
,Both
. - key
Id Number - Key ID for authentication.
- key
Type String - Select NTP authentication type. Valid values:
SHA1
,SHA256
,MD5
. - keys List<String>
- Key for MD5(NTPv3)/SHA1(NTPv4) authentication.
- ntpv3 String
- Enable to use NTPv3 instead of NTPv4. Valid values:
disable
,enable
. - server String
- IP address or hostname of the NTP Server.
Import
Systemp SystemNtp 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/systempSystemNtp:SystempSystemNtp labelname SystempSystemNtp
$ 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.