sdwan.SystemNtpFeature
Explore with Pulumi AI
This resource can manage a System NTP Feature.
- Minimum SD-WAN Manager version:
20.12.0
Example Usage
Coming soon!
Coming soon!
Coming soon!
Coming soon!
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.sdwan.SystemNtpFeature;
import com.pulumi.sdwan.SystemNtpFeatureArgs;
import com.pulumi.sdwan.inputs.SystemNtpFeatureServerArgs;
import com.pulumi.sdwan.inputs.SystemNtpFeatureAuthenticationKeyArgs;
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 example = new SystemNtpFeature("example", SystemNtpFeatureArgs.builder()
.name("Example")
.description("My Example")
.featureProfileId("f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac")
.servers(SystemNtpFeatureServerArgs.builder()
.hostname_ip_address("1.1.1.1")
.authentication_key(41673)
.vpn(1)
.ntp_version(4)
.source_interface("Ethernet")
.prefer_this_ntp_server(false)
.build())
.authenticationKeys(SystemNtpFeatureAuthenticationKeyArgs.builder()
.key_id(49737)
.md5_value("$CRYPT_CLUSTER")
.build())
.trustedKeys(49737)
.authoritativeNtpServer(false)
.stratum(1)
.sourceInterface("ATM")
.build());
}
}
resources:
example:
type: sdwan:SystemNtpFeature
properties:
name: Example
description: My Example
featureProfileId: f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac
servers:
- hostname_ip_address: 1.1.1.1
authentication_key: 41673
vpn: 1
ntp_version: 4
source_interface: Ethernet
prefer_this_ntp_server: false
authenticationKeys:
- key_id: 49737
md5_value: $CRYPT_CLUSTER
trustedKeys:
- 49737
authoritativeNtpServer: false
stratum: 1
sourceInterface: ATM
Create SystemNtpFeature Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new SystemNtpFeature(name: string, args?: SystemNtpFeatureArgs, opts?: CustomResourceOptions);
@overload
def SystemNtpFeature(resource_name: str,
args: Optional[SystemNtpFeatureArgs] = None,
opts: Optional[ResourceOptions] = None)
@overload
def SystemNtpFeature(resource_name: str,
opts: Optional[ResourceOptions] = None,
authentication_keys: Optional[Sequence[SystemNtpFeatureAuthenticationKeyArgs]] = None,
authoritative_ntp_server: Optional[bool] = None,
authoritative_ntp_server_variable: Optional[str] = None,
description: Optional[str] = None,
feature_profile_id: Optional[str] = None,
name: Optional[str] = None,
servers: Optional[Sequence[SystemNtpFeatureServerArgs]] = None,
source_interface: Optional[str] = None,
source_interface_variable: Optional[str] = None,
stratum: Optional[int] = None,
stratum_variable: Optional[str] = None,
trusted_keys: Optional[Sequence[int]] = None,
trusted_keys_variable: Optional[str] = None)
func NewSystemNtpFeature(ctx *Context, name string, args *SystemNtpFeatureArgs, opts ...ResourceOption) (*SystemNtpFeature, error)
public SystemNtpFeature(string name, SystemNtpFeatureArgs? args = null, CustomResourceOptions? opts = null)
public SystemNtpFeature(String name, SystemNtpFeatureArgs args)
public SystemNtpFeature(String name, SystemNtpFeatureArgs args, CustomResourceOptions options)
type: sdwan:SystemNtpFeature
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 SystemNtpFeatureArgs
- 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 SystemNtpFeatureArgs
- 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 SystemNtpFeatureArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args SystemNtpFeatureArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args SystemNtpFeatureArgs
- 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 systemNtpFeatureResource = new Sdwan.SystemNtpFeature("systemNtpFeatureResource", new()
{
AuthenticationKeys = new[]
{
new Sdwan.Inputs.SystemNtpFeatureAuthenticationKeyArgs
{
KeyId = 0,
KeyIdVariable = "string",
Md5Value = "string",
Md5ValueVariable = "string",
},
},
AuthoritativeNtpServer = false,
AuthoritativeNtpServerVariable = "string",
Description = "string",
FeatureProfileId = "string",
Name = "string",
Servers = new[]
{
new Sdwan.Inputs.SystemNtpFeatureServerArgs
{
AuthenticationKey = 0,
AuthenticationKeyVariable = "string",
HostnameIpAddress = "string",
HostnameIpAddressVariable = "string",
NtpVersion = 0,
NtpVersionVariable = "string",
PreferThisNtpServer = false,
PreferThisNtpServerVariable = "string",
SourceInterface = "string",
SourceInterfaceVariable = "string",
Vpn = 0,
VpnVariable = "string",
},
},
SourceInterface = "string",
SourceInterfaceVariable = "string",
Stratum = 0,
StratumVariable = "string",
TrustedKeys = new[]
{
0,
},
TrustedKeysVariable = "string",
});
example, err := sdwan.NewSystemNtpFeature(ctx, "systemNtpFeatureResource", &sdwan.SystemNtpFeatureArgs{
AuthenticationKeys: sdwan.SystemNtpFeatureAuthenticationKeyArray{
&sdwan.SystemNtpFeatureAuthenticationKeyArgs{
KeyId: pulumi.Int(0),
KeyIdVariable: pulumi.String("string"),
Md5Value: pulumi.String("string"),
Md5ValueVariable: pulumi.String("string"),
},
},
AuthoritativeNtpServer: pulumi.Bool(false),
AuthoritativeNtpServerVariable: pulumi.String("string"),
Description: pulumi.String("string"),
FeatureProfileId: pulumi.String("string"),
Name: pulumi.String("string"),
Servers: sdwan.SystemNtpFeatureServerArray{
&sdwan.SystemNtpFeatureServerArgs{
AuthenticationKey: pulumi.Int(0),
AuthenticationKeyVariable: pulumi.String("string"),
HostnameIpAddress: pulumi.String("string"),
HostnameIpAddressVariable: pulumi.String("string"),
NtpVersion: pulumi.Int(0),
NtpVersionVariable: pulumi.String("string"),
PreferThisNtpServer: pulumi.Bool(false),
PreferThisNtpServerVariable: pulumi.String("string"),
SourceInterface: pulumi.String("string"),
SourceInterfaceVariable: pulumi.String("string"),
Vpn: pulumi.Int(0),
VpnVariable: pulumi.String("string"),
},
},
SourceInterface: pulumi.String("string"),
SourceInterfaceVariable: pulumi.String("string"),
Stratum: pulumi.Int(0),
StratumVariable: pulumi.String("string"),
TrustedKeys: pulumi.IntArray{
pulumi.Int(0),
},
TrustedKeysVariable: pulumi.String("string"),
})
var systemNtpFeatureResource = new SystemNtpFeature("systemNtpFeatureResource", SystemNtpFeatureArgs.builder()
.authenticationKeys(SystemNtpFeatureAuthenticationKeyArgs.builder()
.keyId(0)
.keyIdVariable("string")
.md5Value("string")
.md5ValueVariable("string")
.build())
.authoritativeNtpServer(false)
.authoritativeNtpServerVariable("string")
.description("string")
.featureProfileId("string")
.name("string")
.servers(SystemNtpFeatureServerArgs.builder()
.authenticationKey(0)
.authenticationKeyVariable("string")
.hostnameIpAddress("string")
.hostnameIpAddressVariable("string")
.ntpVersion(0)
.ntpVersionVariable("string")
.preferThisNtpServer(false)
.preferThisNtpServerVariable("string")
.sourceInterface("string")
.sourceInterfaceVariable("string")
.vpn(0)
.vpnVariable("string")
.build())
.sourceInterface("string")
.sourceInterfaceVariable("string")
.stratum(0)
.stratumVariable("string")
.trustedKeys(0)
.trustedKeysVariable("string")
.build());
system_ntp_feature_resource = sdwan.SystemNtpFeature("systemNtpFeatureResource",
authentication_keys=[{
"key_id": 0,
"key_id_variable": "string",
"md5_value": "string",
"md5_value_variable": "string",
}],
authoritative_ntp_server=False,
authoritative_ntp_server_variable="string",
description="string",
feature_profile_id="string",
name="string",
servers=[{
"authentication_key": 0,
"authentication_key_variable": "string",
"hostname_ip_address": "string",
"hostname_ip_address_variable": "string",
"ntp_version": 0,
"ntp_version_variable": "string",
"prefer_this_ntp_server": False,
"prefer_this_ntp_server_variable": "string",
"source_interface": "string",
"source_interface_variable": "string",
"vpn": 0,
"vpn_variable": "string",
}],
source_interface="string",
source_interface_variable="string",
stratum=0,
stratum_variable="string",
trusted_keys=[0],
trusted_keys_variable="string")
const systemNtpFeatureResource = new sdwan.SystemNtpFeature("systemNtpFeatureResource", {
authenticationKeys: [{
keyId: 0,
keyIdVariable: "string",
md5Value: "string",
md5ValueVariable: "string",
}],
authoritativeNtpServer: false,
authoritativeNtpServerVariable: "string",
description: "string",
featureProfileId: "string",
name: "string",
servers: [{
authenticationKey: 0,
authenticationKeyVariable: "string",
hostnameIpAddress: "string",
hostnameIpAddressVariable: "string",
ntpVersion: 0,
ntpVersionVariable: "string",
preferThisNtpServer: false,
preferThisNtpServerVariable: "string",
sourceInterface: "string",
sourceInterfaceVariable: "string",
vpn: 0,
vpnVariable: "string",
}],
sourceInterface: "string",
sourceInterfaceVariable: "string",
stratum: 0,
stratumVariable: "string",
trustedKeys: [0],
trustedKeysVariable: "string",
});
type: sdwan:SystemNtpFeature
properties:
authenticationKeys:
- keyId: 0
keyIdVariable: string
md5Value: string
md5ValueVariable: string
authoritativeNtpServer: false
authoritativeNtpServerVariable: string
description: string
featureProfileId: string
name: string
servers:
- authenticationKey: 0
authenticationKeyVariable: string
hostnameIpAddress: string
hostnameIpAddressVariable: string
ntpVersion: 0
ntpVersionVariable: string
preferThisNtpServer: false
preferThisNtpServerVariable: string
sourceInterface: string
sourceInterfaceVariable: string
vpn: 0
vpnVariable: string
sourceInterface: string
sourceInterfaceVariable: string
stratum: 0
stratumVariable: string
trustedKeys:
- 0
trustedKeysVariable: string
SystemNtpFeature 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 SystemNtpFeature resource accepts the following input properties:
- Authentication
Keys List<SystemNtp Feature Authentication Key> - Set MD5 authentication key
- bool
- Enable device as NTP Leader - Default value:
false
- string
- Variable name
- Description string
- The description of the Feature
- Feature
Profile stringId - Feature Profile ID
- Name string
- The name of the Feature
- Servers
List<System
Ntp Feature Server> - Configure NTP servers
- Source
Interface string - Enable device as NTP Leader
- Source
Interface stringVariable - Variable name
- Stratum int
- Enable device as NTP Leader - Range:
1
-15
- Stratum
Variable string - Variable name
- Trusted
Keys List<int> - Designate authentication key as trustworthy
- Trusted
Keys stringVariable - Variable name
- Authentication
Keys []SystemNtp Feature Authentication Key Args - Set MD5 authentication key
- bool
- Enable device as NTP Leader - Default value:
false
- string
- Variable name
- Description string
- The description of the Feature
- Feature
Profile stringId - Feature Profile ID
- Name string
- The name of the Feature
- Servers
[]System
Ntp Feature Server Args - Configure NTP servers
- Source
Interface string - Enable device as NTP Leader
- Source
Interface stringVariable - Variable name
- Stratum int
- Enable device as NTP Leader - Range:
1
-15
- Stratum
Variable string - Variable name
- Trusted
Keys []int - Designate authentication key as trustworthy
- Trusted
Keys stringVariable - Variable name
- authentication
Keys List<SystemNtp Feature Authentication Key> - Set MD5 authentication key
- Boolean
- Enable device as NTP Leader - Default value:
false
- String
- Variable name
- description String
- The description of the Feature
- feature
Profile StringId - Feature Profile ID
- name String
- The name of the Feature
- servers
List<System
Ntp Feature Server> - Configure NTP servers
- source
Interface String - Enable device as NTP Leader
- source
Interface StringVariable - Variable name
- stratum Integer
- Enable device as NTP Leader - Range:
1
-15
- stratum
Variable String - Variable name
- trusted
Keys List<Integer> - Designate authentication key as trustworthy
- trusted
Keys StringVariable - Variable name
- authentication
Keys SystemNtp Feature Authentication Key[] - Set MD5 authentication key
- boolean
- Enable device as NTP Leader - Default value:
false
- string
- Variable name
- description string
- The description of the Feature
- feature
Profile stringId - Feature Profile ID
- name string
- The name of the Feature
- servers
System
Ntp Feature Server[] - Configure NTP servers
- source
Interface string - Enable device as NTP Leader
- source
Interface stringVariable - Variable name
- stratum number
- Enable device as NTP Leader - Range:
1
-15
- stratum
Variable string - Variable name
- trusted
Keys number[] - Designate authentication key as trustworthy
- trusted
Keys stringVariable - Variable name
- authentication_
keys Sequence[SystemNtp Feature Authentication Key Args] - Set MD5 authentication key
- bool
- Enable device as NTP Leader - Default value:
false
- str
- Variable name
- description str
- The description of the Feature
- feature_
profile_ strid - Feature Profile ID
- name str
- The name of the Feature
- servers
Sequence[System
Ntp Feature Server Args] - Configure NTP servers
- source_
interface str - Enable device as NTP Leader
- source_
interface_ strvariable - Variable name
- stratum int
- Enable device as NTP Leader - Range:
1
-15
- stratum_
variable str - Variable name
- trusted_
keys Sequence[int] - Designate authentication key as trustworthy
- trusted_
keys_ strvariable - Variable name
- authentication
Keys List<Property Map> - Set MD5 authentication key
- Boolean
- Enable device as NTP Leader - Default value:
false
- String
- Variable name
- description String
- The description of the Feature
- feature
Profile StringId - Feature Profile ID
- name String
- The name of the Feature
- servers List<Property Map>
- Configure NTP servers
- source
Interface String - Enable device as NTP Leader
- source
Interface StringVariable - Variable name
- stratum Number
- Enable device as NTP Leader - Range:
1
-15
- stratum
Variable String - Variable name
- trusted
Keys List<Number> - Designate authentication key as trustworthy
- trusted
Keys StringVariable - Variable name
Outputs
All input properties are implicitly available as output properties. Additionally, the SystemNtpFeature resource produces the following output properties:
Look up Existing SystemNtpFeature Resource
Get an existing SystemNtpFeature 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?: SystemNtpFeatureState, opts?: CustomResourceOptions): SystemNtpFeature
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
authentication_keys: Optional[Sequence[SystemNtpFeatureAuthenticationKeyArgs]] = None,
authoritative_ntp_server: Optional[bool] = None,
authoritative_ntp_server_variable: Optional[str] = None,
description: Optional[str] = None,
feature_profile_id: Optional[str] = None,
name: Optional[str] = None,
servers: Optional[Sequence[SystemNtpFeatureServerArgs]] = None,
source_interface: Optional[str] = None,
source_interface_variable: Optional[str] = None,
stratum: Optional[int] = None,
stratum_variable: Optional[str] = None,
trusted_keys: Optional[Sequence[int]] = None,
trusted_keys_variable: Optional[str] = None,
version: Optional[int] = None) -> SystemNtpFeature
func GetSystemNtpFeature(ctx *Context, name string, id IDInput, state *SystemNtpFeatureState, opts ...ResourceOption) (*SystemNtpFeature, error)
public static SystemNtpFeature Get(string name, Input<string> id, SystemNtpFeatureState? state, CustomResourceOptions? opts = null)
public static SystemNtpFeature get(String name, Output<String> id, SystemNtpFeatureState state, CustomResourceOptions options)
Resource lookup is not supported in YAML
- 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
Keys List<SystemNtp Feature Authentication Key> - Set MD5 authentication key
- bool
- Enable device as NTP Leader - Default value:
false
- string
- Variable name
- Description string
- The description of the Feature
- Feature
Profile stringId - Feature Profile ID
- Name string
- The name of the Feature
- Servers
List<System
Ntp Feature Server> - Configure NTP servers
- Source
Interface string - Enable device as NTP Leader
- Source
Interface stringVariable - Variable name
- Stratum int
- Enable device as NTP Leader - Range:
1
-15
- Stratum
Variable string - Variable name
- Trusted
Keys List<int> - Designate authentication key as trustworthy
- Trusted
Keys stringVariable - Variable name
- Version int
- The version of the Feature
- Authentication
Keys []SystemNtp Feature Authentication Key Args - Set MD5 authentication key
- bool
- Enable device as NTP Leader - Default value:
false
- string
- Variable name
- Description string
- The description of the Feature
- Feature
Profile stringId - Feature Profile ID
- Name string
- The name of the Feature
- Servers
[]System
Ntp Feature Server Args - Configure NTP servers
- Source
Interface string - Enable device as NTP Leader
- Source
Interface stringVariable - Variable name
- Stratum int
- Enable device as NTP Leader - Range:
1
-15
- Stratum
Variable string - Variable name
- Trusted
Keys []int - Designate authentication key as trustworthy
- Trusted
Keys stringVariable - Variable name
- Version int
- The version of the Feature
- authentication
Keys List<SystemNtp Feature Authentication Key> - Set MD5 authentication key
- Boolean
- Enable device as NTP Leader - Default value:
false
- String
- Variable name
- description String
- The description of the Feature
- feature
Profile StringId - Feature Profile ID
- name String
- The name of the Feature
- servers
List<System
Ntp Feature Server> - Configure NTP servers
- source
Interface String - Enable device as NTP Leader
- source
Interface StringVariable - Variable name
- stratum Integer
- Enable device as NTP Leader - Range:
1
-15
- stratum
Variable String - Variable name
- trusted
Keys List<Integer> - Designate authentication key as trustworthy
- trusted
Keys StringVariable - Variable name
- version Integer
- The version of the Feature
- authentication
Keys SystemNtp Feature Authentication Key[] - Set MD5 authentication key
- boolean
- Enable device as NTP Leader - Default value:
false
- string
- Variable name
- description string
- The description of the Feature
- feature
Profile stringId - Feature Profile ID
- name string
- The name of the Feature
- servers
System
Ntp Feature Server[] - Configure NTP servers
- source
Interface string - Enable device as NTP Leader
- source
Interface stringVariable - Variable name
- stratum number
- Enable device as NTP Leader - Range:
1
-15
- stratum
Variable string - Variable name
- trusted
Keys number[] - Designate authentication key as trustworthy
- trusted
Keys stringVariable - Variable name
- version number
- The version of the Feature
- authentication_
keys Sequence[SystemNtp Feature Authentication Key Args] - Set MD5 authentication key
- bool
- Enable device as NTP Leader - Default value:
false
- str
- Variable name
- description str
- The description of the Feature
- feature_
profile_ strid - Feature Profile ID
- name str
- The name of the Feature
- servers
Sequence[System
Ntp Feature Server Args] - Configure NTP servers
- source_
interface str - Enable device as NTP Leader
- source_
interface_ strvariable - Variable name
- stratum int
- Enable device as NTP Leader - Range:
1
-15
- stratum_
variable str - Variable name
- trusted_
keys Sequence[int] - Designate authentication key as trustworthy
- trusted_
keys_ strvariable - Variable name
- version int
- The version of the Feature
- authentication
Keys List<Property Map> - Set MD5 authentication key
- Boolean
- Enable device as NTP Leader - Default value:
false
- String
- Variable name
- description String
- The description of the Feature
- feature
Profile StringId - Feature Profile ID
- name String
- The name of the Feature
- servers List<Property Map>
- Configure NTP servers
- source
Interface String - Enable device as NTP Leader
- source
Interface StringVariable - Variable name
- stratum Number
- Enable device as NTP Leader - Range:
1
-15
- stratum
Variable String - Variable name
- trusted
Keys List<Number> - Designate authentication key as trustworthy
- trusted
Keys StringVariable - Variable name
- version Number
- The version of the Feature
Supporting Types
SystemNtpFeatureAuthenticationKey, SystemNtpFeatureAuthenticationKeyArgs
- Key
Id int - MD5 authentication key ID
- Range:
1
-65535
- Range:
- Key
Id stringVariable - Variable name
- Md5Value string
- Enter cleartext or AES-encrypted MD5 authentication key
- Md5Value
Variable string - Variable name
- Key
Id int - MD5 authentication key ID
- Range:
1
-65535
- Range:
- Key
Id stringVariable - Variable name
- Md5Value string
- Enter cleartext or AES-encrypted MD5 authentication key
- Md5Value
Variable string - Variable name
- key
Id Integer - MD5 authentication key ID
- Range:
1
-65535
- Range:
- key
Id StringVariable - Variable name
- md5Value String
- Enter cleartext or AES-encrypted MD5 authentication key
- md5Value
Variable String - Variable name
- key
Id number - MD5 authentication key ID
- Range:
1
-65535
- Range:
- key
Id stringVariable - Variable name
- md5Value string
- Enter cleartext or AES-encrypted MD5 authentication key
- md5Value
Variable string - Variable name
- key_
id int - MD5 authentication key ID
- Range:
1
-65535
- Range:
- key_
id_ strvariable - Variable name
- md5_
value str - Enter cleartext or AES-encrypted MD5 authentication key
- md5_
value_ strvariable - Variable name
- key
Id Number - MD5 authentication key ID
- Range:
1
-65535
- Range:
- key
Id StringVariable - Variable name
- md5Value String
- Enter cleartext or AES-encrypted MD5 authentication key
- md5Value
Variable String - Variable name
SystemNtpFeatureServer, SystemNtpFeatureServerArgs
- Authentication
Key int - Set authentication key for the server
- Range:
1
-65535
- Range:
- Authentication
Key stringVariable - Variable name
- Hostname
Ip stringAddress - Set hostname or IP address of server
- Hostname
Ip stringAddress Variable - Variable name
- Ntp
Version int - Set NTP version
- Range:
1
-4
- Default value:
4
- Range:
- Ntp
Version stringVariable - Variable name
- Prefer
This boolNtp Server - Prefer this NTP server
- Default value:
false
- Default value:
- Prefer
This stringNtp Server Variable - Variable name
- Source
Interface string - Set interface to use to reach NTP server
- Source
Interface stringVariable - Variable name
- Vpn int
- Set VPN in which NTP server is located
- Range:
0
-65530
- Default value:
0
- Range:
- Vpn
Variable string - Variable name
- Authentication
Key int - Set authentication key for the server
- Range:
1
-65535
- Range:
- Authentication
Key stringVariable - Variable name
- Hostname
Ip stringAddress - Set hostname or IP address of server
- Hostname
Ip stringAddress Variable - Variable name
- Ntp
Version int - Set NTP version
- Range:
1
-4
- Default value:
4
- Range:
- Ntp
Version stringVariable - Variable name
- Prefer
This boolNtp Server - Prefer this NTP server
- Default value:
false
- Default value:
- Prefer
This stringNtp Server Variable - Variable name
- Source
Interface string - Set interface to use to reach NTP server
- Source
Interface stringVariable - Variable name
- Vpn int
- Set VPN in which NTP server is located
- Range:
0
-65530
- Default value:
0
- Range:
- Vpn
Variable string - Variable name
- authentication
Key Integer - Set authentication key for the server
- Range:
1
-65535
- Range:
- authentication
Key StringVariable - Variable name
- hostname
Ip StringAddress - Set hostname or IP address of server
- hostname
Ip StringAddress Variable - Variable name
- ntp
Version Integer - Set NTP version
- Range:
1
-4
- Default value:
4
- Range:
- ntp
Version StringVariable - Variable name
- prefer
This BooleanNtp Server - Prefer this NTP server
- Default value:
false
- Default value:
- prefer
This StringNtp Server Variable - Variable name
- source
Interface String - Set interface to use to reach NTP server
- source
Interface StringVariable - Variable name
- vpn Integer
- Set VPN in which NTP server is located
- Range:
0
-65530
- Default value:
0
- Range:
- vpn
Variable String - Variable name
- authentication
Key number - Set authentication key for the server
- Range:
1
-65535
- Range:
- authentication
Key stringVariable - Variable name
- hostname
Ip stringAddress - Set hostname or IP address of server
- hostname
Ip stringAddress Variable - Variable name
- ntp
Version number - Set NTP version
- Range:
1
-4
- Default value:
4
- Range:
- ntp
Version stringVariable - Variable name
- prefer
This booleanNtp Server - Prefer this NTP server
- Default value:
false
- Default value:
- prefer
This stringNtp Server Variable - Variable name
- source
Interface string - Set interface to use to reach NTP server
- source
Interface stringVariable - Variable name
- vpn number
- Set VPN in which NTP server is located
- Range:
0
-65530
- Default value:
0
- Range:
- vpn
Variable string - Variable name
- authentication_
key int - Set authentication key for the server
- Range:
1
-65535
- Range:
- authentication_
key_ strvariable - Variable name
- hostname_
ip_ straddress - Set hostname or IP address of server
- hostname_
ip_ straddress_ variable - Variable name
- ntp_
version int - Set NTP version
- Range:
1
-4
- Default value:
4
- Range:
- ntp_
version_ strvariable - Variable name
- prefer_
this_ boolntp_ server - Prefer this NTP server
- Default value:
false
- Default value:
- prefer_
this_ strntp_ server_ variable - Variable name
- source_
interface str - Set interface to use to reach NTP server
- source_
interface_ strvariable - Variable name
- vpn int
- Set VPN in which NTP server is located
- Range:
0
-65530
- Default value:
0
- Range:
- vpn_
variable str - Variable name
- authentication
Key Number - Set authentication key for the server
- Range:
1
-65535
- Range:
- authentication
Key StringVariable - Variable name
- hostname
Ip StringAddress - Set hostname or IP address of server
- hostname
Ip StringAddress Variable - Variable name
- ntp
Version Number - Set NTP version
- Range:
1
-4
- Default value:
4
- Range:
- ntp
Version StringVariable - Variable name
- prefer
This BooleanNtp Server - Prefer this NTP server
- Default value:
false
- Default value:
- prefer
This StringNtp Server Variable - Variable name
- source
Interface String - Set interface to use to reach NTP server
- source
Interface StringVariable - Variable name
- vpn Number
- Set VPN in which NTP server is located
- Range:
0
-65530
- Default value:
0
- Range:
- vpn
Variable String - Variable name
Import
Expected import identifier with the format: “system_ntp_feature_id,feature_profile_id”
$ pulumi import sdwan:index/systemNtpFeature:SystemNtpFeature example "f6b2c44c-693c-4763-b010-895aa3d236bd,f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac"
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- sdwan pulumi/pulumi-sdwan
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
sdwan
Terraform Provider.