fortimanager.SystemNtpNtpserver
Explore with Pulumi AI
NTP server.
This resource is a sub resource for variable
ntpserver
of resourcefortimanager.SystemNtp
. Conflict and overwrite may occur if use both of them.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as fortimanager from "@pulumi/fortimanager";
const trname = new fortimanager.SystemNtpNtpserver("trname", {
authentication: "disable",
fosid: 2,
keys: ["fortinet"],
keyId: 0,
ntpv3: "enable",
server: "ntp1.fortinet.net",
});
import pulumi
import pulumi_fortimanager as fortimanager
trname = fortimanager.SystemNtpNtpserver("trname",
authentication="disable",
fosid=2,
keys=["fortinet"],
key_id=0,
ntpv3="enable",
server="ntp1.fortinet.net")
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.NewSystemNtpNtpserver(ctx, "trname", &fortimanager.SystemNtpNtpserverArgs{
Authentication: pulumi.String("disable"),
Fosid: pulumi.Float64(2),
Keys: pulumi.StringArray{
pulumi.String("fortinet"),
},
KeyId: pulumi.Float64(0),
Ntpv3: pulumi.String("enable"),
Server: pulumi.String("ntp1.fortinet.net"),
})
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.SystemNtpNtpserver("trname", new()
{
Authentication = "disable",
Fosid = 2,
Keys = new[]
{
"fortinet",
},
KeyId = 0,
Ntpv3 = "enable",
Server = "ntp1.fortinet.net",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.fortimanager.SystemNtpNtpserver;
import com.pulumi.fortimanager.SystemNtpNtpserverArgs;
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 SystemNtpNtpserver("trname", SystemNtpNtpserverArgs.builder()
.authentication("disable")
.fosid("2")
.keys("fortinet")
.keyId(0)
.ntpv3("enable")
.server("ntp1.fortinet.net")
.build());
}
}
resources:
trname:
type: fortimanager:SystemNtpNtpserver
properties:
authentication: disable
fosid: '2'
keys:
- fortinet
keyId: 0
ntpv3: enable
server: ntp1.fortinet.net
Create SystemNtpNtpserver Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new SystemNtpNtpserver(name: string, args?: SystemNtpNtpserverArgs, opts?: CustomResourceOptions);
@overload
def SystemNtpNtpserver(resource_name: str,
args: Optional[SystemNtpNtpserverInitArgs] = None,
opts: Optional[ResourceOptions] = None)
@overload
def SystemNtpNtpserver(resource_name: str,
opts: Optional[ResourceOptions] = None,
authentication: Optional[str] = None,
fosid: Optional[float] = None,
key_id: Optional[float] = None,
keys: Optional[Sequence[str]] = None,
maxpoll: Optional[float] = None,
minpoll: Optional[float] = None,
ntpv3: Optional[str] = None,
server: Optional[str] = None,
system_ntp_ntpserver_id: Optional[str] = None)
func NewSystemNtpNtpserver(ctx *Context, name string, args *SystemNtpNtpserverArgs, opts ...ResourceOption) (*SystemNtpNtpserver, error)
public SystemNtpNtpserver(string name, SystemNtpNtpserverArgs? args = null, CustomResourceOptions? opts = null)
public SystemNtpNtpserver(String name, SystemNtpNtpserverArgs args)
public SystemNtpNtpserver(String name, SystemNtpNtpserverArgs args, CustomResourceOptions options)
type: fortimanager:SystemNtpNtpserver
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 SystemNtpNtpserverArgs
- 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 SystemNtpNtpserverInitArgs
- 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 SystemNtpNtpserverArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args SystemNtpNtpserverArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args SystemNtpNtpserverArgs
- 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 systemNtpNtpserverResource = new Fortimanager.SystemNtpNtpserver("systemNtpNtpserverResource", new()
{
Authentication = "string",
Fosid = 0,
KeyId = 0,
Keys = new[]
{
"string",
},
Maxpoll = 0,
Minpoll = 0,
Ntpv3 = "string",
Server = "string",
SystemNtpNtpserverId = "string",
});
example, err := fortimanager.NewSystemNtpNtpserver(ctx, "systemNtpNtpserverResource", &fortimanager.SystemNtpNtpserverArgs{
Authentication: pulumi.String("string"),
Fosid: pulumi.Float64(0),
KeyId: pulumi.Float64(0),
Keys: pulumi.StringArray{
pulumi.String("string"),
},
Maxpoll: pulumi.Float64(0),
Minpoll: pulumi.Float64(0),
Ntpv3: pulumi.String("string"),
Server: pulumi.String("string"),
SystemNtpNtpserverId: pulumi.String("string"),
})
var systemNtpNtpserverResource = new SystemNtpNtpserver("systemNtpNtpserverResource", SystemNtpNtpserverArgs.builder()
.authentication("string")
.fosid(0)
.keyId(0)
.keys("string")
.maxpoll(0)
.minpoll(0)
.ntpv3("string")
.server("string")
.systemNtpNtpserverId("string")
.build());
system_ntp_ntpserver_resource = fortimanager.SystemNtpNtpserver("systemNtpNtpserverResource",
authentication="string",
fosid=0,
key_id=0,
keys=["string"],
maxpoll=0,
minpoll=0,
ntpv3="string",
server="string",
system_ntp_ntpserver_id="string")
const systemNtpNtpserverResource = new fortimanager.SystemNtpNtpserver("systemNtpNtpserverResource", {
authentication: "string",
fosid: 0,
keyId: 0,
keys: ["string"],
maxpoll: 0,
minpoll: 0,
ntpv3: "string",
server: "string",
systemNtpNtpserverId: "string",
});
type: fortimanager:SystemNtpNtpserver
properties:
authentication: string
fosid: 0
keyId: 0
keys:
- string
maxpoll: 0
minpoll: 0
ntpv3: string
server: string
systemNtpNtpserverId: string
SystemNtpNtpserver 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 SystemNtpNtpserver resource accepts the following input properties:
- Authentication string
- Enable/disable MD5 authentication. disable - Disable setting. enable - Enable setting. Valid values:
disable
,enable
. - Fosid double
- Time server ID.
- Key
Id double - Key ID for authentication.
- Keys List<string>
- Key for authentication.
- Maxpoll double
- Maximum poll interval in seconds as power of 2 (e.g. 6 means 64 seconds).
- Minpoll double
- Minimum poll interval in seconds as power of 2 (e.g. 6 means 64 seconds).
- Ntpv3 string
- Enable/disable NTPv3. disable - Disable setting. enable - Enable setting. Valid values:
disable
,enable
. - Server string
- IP address/hostname of NTP Server.
- System
Ntp stringNtpserver Id - an identifier for the resource with format {{fosid}}.
- Authentication string
- Enable/disable MD5 authentication. disable - Disable setting. enable - Enable setting. Valid values:
disable
,enable
. - Fosid float64
- Time server ID.
- Key
Id float64 - Key ID for authentication.
- Keys []string
- Key for authentication.
- Maxpoll float64
- Maximum poll interval in seconds as power of 2 (e.g. 6 means 64 seconds).
- Minpoll float64
- Minimum poll interval in seconds as power of 2 (e.g. 6 means 64 seconds).
- Ntpv3 string
- Enable/disable NTPv3. disable - Disable setting. enable - Enable setting. Valid values:
disable
,enable
. - Server string
- IP address/hostname of NTP Server.
- System
Ntp stringNtpserver Id - an identifier for the resource with format {{fosid}}.
- authentication String
- Enable/disable MD5 authentication. disable - Disable setting. enable - Enable setting. Valid values:
disable
,enable
. - fosid Double
- Time server ID.
- key
Id Double - Key ID for authentication.
- keys List<String>
- Key for authentication.
- maxpoll Double
- Maximum poll interval in seconds as power of 2 (e.g. 6 means 64 seconds).
- minpoll Double
- Minimum poll interval in seconds as power of 2 (e.g. 6 means 64 seconds).
- ntpv3 String
- Enable/disable NTPv3. disable - Disable setting. enable - Enable setting. Valid values:
disable
,enable
. - server String
- IP address/hostname of NTP Server.
- system
Ntp StringNtpserver Id - an identifier for the resource with format {{fosid}}.
- authentication string
- Enable/disable MD5 authentication. disable - Disable setting. enable - Enable setting. Valid values:
disable
,enable
. - fosid number
- Time server ID.
- key
Id number - Key ID for authentication.
- keys string[]
- Key for authentication.
- maxpoll number
- Maximum poll interval in seconds as power of 2 (e.g. 6 means 64 seconds).
- minpoll number
- Minimum poll interval in seconds as power of 2 (e.g. 6 means 64 seconds).
- ntpv3 string
- Enable/disable NTPv3. disable - Disable setting. enable - Enable setting. Valid values:
disable
,enable
. - server string
- IP address/hostname of NTP Server.
- system
Ntp stringNtpserver Id - an identifier for the resource with format {{fosid}}.
- authentication str
- Enable/disable MD5 authentication. disable - Disable setting. enable - Enable setting. Valid values:
disable
,enable
. - fosid float
- Time server ID.
- key_
id float - Key ID for authentication.
- keys Sequence[str]
- Key for authentication.
- maxpoll float
- Maximum poll interval in seconds as power of 2 (e.g. 6 means 64 seconds).
- minpoll float
- Minimum poll interval in seconds as power of 2 (e.g. 6 means 64 seconds).
- ntpv3 str
- Enable/disable NTPv3. disable - Disable setting. enable - Enable setting. Valid values:
disable
,enable
. - server str
- IP address/hostname of NTP Server.
- system_
ntp_ strntpserver_ id - an identifier for the resource with format {{fosid}}.
- authentication String
- Enable/disable MD5 authentication. disable - Disable setting. enable - Enable setting. Valid values:
disable
,enable
. - fosid Number
- Time server ID.
- key
Id Number - Key ID for authentication.
- keys List<String>
- Key for authentication.
- maxpoll Number
- Maximum poll interval in seconds as power of 2 (e.g. 6 means 64 seconds).
- minpoll Number
- Minimum poll interval in seconds as power of 2 (e.g. 6 means 64 seconds).
- ntpv3 String
- Enable/disable NTPv3. disable - Disable setting. enable - Enable setting. Valid values:
disable
,enable
. - server String
- IP address/hostname of NTP Server.
- system
Ntp StringNtpserver Id - an identifier for the resource with format {{fosid}}.
Outputs
All input properties are implicitly available as output properties. Additionally, the SystemNtpNtpserver 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 SystemNtpNtpserver Resource
Get an existing SystemNtpNtpserver 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?: SystemNtpNtpserverState, opts?: CustomResourceOptions): SystemNtpNtpserver
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
authentication: Optional[str] = None,
fosid: Optional[float] = None,
key_id: Optional[float] = None,
keys: Optional[Sequence[str]] = None,
maxpoll: Optional[float] = None,
minpoll: Optional[float] = None,
ntpv3: Optional[str] = None,
server: Optional[str] = None,
system_ntp_ntpserver_id: Optional[str] = None) -> SystemNtpNtpserver
func GetSystemNtpNtpserver(ctx *Context, name string, id IDInput, state *SystemNtpNtpserverState, opts ...ResourceOption) (*SystemNtpNtpserver, error)
public static SystemNtpNtpserver Get(string name, Input<string> id, SystemNtpNtpserverState? state, CustomResourceOptions? opts = null)
public static SystemNtpNtpserver get(String name, Output<String> id, SystemNtpNtpserverState state, CustomResourceOptions options)
resources: _: type: fortimanager:SystemNtpNtpserver 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.
- Authentication string
- Enable/disable MD5 authentication. disable - Disable setting. enable - Enable setting. Valid values:
disable
,enable
. - Fosid double
- Time server ID.
- Key
Id double - Key ID for authentication.
- Keys List<string>
- Key for authentication.
- Maxpoll double
- Maximum poll interval in seconds as power of 2 (e.g. 6 means 64 seconds).
- Minpoll double
- Minimum poll interval in seconds as power of 2 (e.g. 6 means 64 seconds).
- Ntpv3 string
- Enable/disable NTPv3. disable - Disable setting. enable - Enable setting. Valid values:
disable
,enable
. - Server string
- IP address/hostname of NTP Server.
- System
Ntp stringNtpserver Id - an identifier for the resource with format {{fosid}}.
- Authentication string
- Enable/disable MD5 authentication. disable - Disable setting. enable - Enable setting. Valid values:
disable
,enable
. - Fosid float64
- Time server ID.
- Key
Id float64 - Key ID for authentication.
- Keys []string
- Key for authentication.
- Maxpoll float64
- Maximum poll interval in seconds as power of 2 (e.g. 6 means 64 seconds).
- Minpoll float64
- Minimum poll interval in seconds as power of 2 (e.g. 6 means 64 seconds).
- Ntpv3 string
- Enable/disable NTPv3. disable - Disable setting. enable - Enable setting. Valid values:
disable
,enable
. - Server string
- IP address/hostname of NTP Server.
- System
Ntp stringNtpserver Id - an identifier for the resource with format {{fosid}}.
- authentication String
- Enable/disable MD5 authentication. disable - Disable setting. enable - Enable setting. Valid values:
disable
,enable
. - fosid Double
- Time server ID.
- key
Id Double - Key ID for authentication.
- keys List<String>
- Key for authentication.
- maxpoll Double
- Maximum poll interval in seconds as power of 2 (e.g. 6 means 64 seconds).
- minpoll Double
- Minimum poll interval in seconds as power of 2 (e.g. 6 means 64 seconds).
- ntpv3 String
- Enable/disable NTPv3. disable - Disable setting. enable - Enable setting. Valid values:
disable
,enable
. - server String
- IP address/hostname of NTP Server.
- system
Ntp StringNtpserver Id - an identifier for the resource with format {{fosid}}.
- authentication string
- Enable/disable MD5 authentication. disable - Disable setting. enable - Enable setting. Valid values:
disable
,enable
. - fosid number
- Time server ID.
- key
Id number - Key ID for authentication.
- keys string[]
- Key for authentication.
- maxpoll number
- Maximum poll interval in seconds as power of 2 (e.g. 6 means 64 seconds).
- minpoll number
- Minimum poll interval in seconds as power of 2 (e.g. 6 means 64 seconds).
- ntpv3 string
- Enable/disable NTPv3. disable - Disable setting. enable - Enable setting. Valid values:
disable
,enable
. - server string
- IP address/hostname of NTP Server.
- system
Ntp stringNtpserver Id - an identifier for the resource with format {{fosid}}.
- authentication str
- Enable/disable MD5 authentication. disable - Disable setting. enable - Enable setting. Valid values:
disable
,enable
. - fosid float
- Time server ID.
- key_
id float - Key ID for authentication.
- keys Sequence[str]
- Key for authentication.
- maxpoll float
- Maximum poll interval in seconds as power of 2 (e.g. 6 means 64 seconds).
- minpoll float
- Minimum poll interval in seconds as power of 2 (e.g. 6 means 64 seconds).
- ntpv3 str
- Enable/disable NTPv3. disable - Disable setting. enable - Enable setting. Valid values:
disable
,enable
. - server str
- IP address/hostname of NTP Server.
- system_
ntp_ strntpserver_ id - an identifier for the resource with format {{fosid}}.
- authentication String
- Enable/disable MD5 authentication. disable - Disable setting. enable - Enable setting. Valid values:
disable
,enable
. - fosid Number
- Time server ID.
- key
Id Number - Key ID for authentication.
- keys List<String>
- Key for authentication.
- maxpoll Number
- Maximum poll interval in seconds as power of 2 (e.g. 6 means 64 seconds).
- minpoll Number
- Minimum poll interval in seconds as power of 2 (e.g. 6 means 64 seconds).
- ntpv3 String
- Enable/disable NTPv3. disable - Disable setting. enable - Enable setting. Valid values:
disable
,enable
. - server String
- IP address/hostname of NTP Server.
- system
Ntp StringNtpserver Id - an identifier for the resource with format {{fosid}}.
Import
System NtpNtpserver can be imported using any of these accepted formats:
$ export “FORTIMANAGER_IMPORT_TABLE”=“true”
$ pulumi import fortimanager:index/systemNtpNtpserver:SystemNtpNtpserver labelname {{fosid}}
$ unset “FORTIMANAGER_IMPORT_TABLE”
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- fortimanager fortinetdev/terraform-provider-fortimanager
- License
- Notes
- This Pulumi package is based on the
fortimanager
Terraform Provider.