routeros.SystemRouterboardSettings
Explore with Pulumi AI
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as routeros from "@pulumi/routeros";
const settings = new routeros.SystemRouterboardSettings("settings", {
autoUpgrade: false,
silentBoot: true,
});
import pulumi
import pulumi_routeros as routeros
settings = routeros.SystemRouterboardSettings("settings",
auto_upgrade=False,
silent_boot=True)
package main
import (
"github.com/pulumi/pulumi-terraform-provider/sdks/go/routeros/routeros"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := routeros.NewSystemRouterboardSettings(ctx, "settings", &routeros.SystemRouterboardSettingsArgs{
AutoUpgrade: pulumi.Bool(false),
SilentBoot: pulumi.Bool(true),
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Routeros = Pulumi.Routeros;
return await Deployment.RunAsync(() =>
{
var settings = new Routeros.SystemRouterboardSettings("settings", new()
{
AutoUpgrade = false,
SilentBoot = true,
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.routeros.SystemRouterboardSettings;
import com.pulumi.routeros.SystemRouterboardSettingsArgs;
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 settings = new SystemRouterboardSettings("settings", SystemRouterboardSettingsArgs.builder()
.autoUpgrade(false)
.silentBoot(true)
.build());
}
}
resources:
settings:
type: routeros:SystemRouterboardSettings
properties:
autoUpgrade: false
silentBoot: true
Create SystemRouterboardSettings Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new SystemRouterboardSettings(name: string, args?: SystemRouterboardSettingsArgs, opts?: CustomResourceOptions);
@overload
def SystemRouterboardSettings(resource_name: str,
args: Optional[SystemRouterboardSettingsArgs] = None,
opts: Optional[ResourceOptions] = None)
@overload
def SystemRouterboardSettings(resource_name: str,
opts: Optional[ResourceOptions] = None,
___id_: Optional[float] = None,
___path_: Optional[str] = None,
auto_upgrade: Optional[bool] = None,
baud_rate: Optional[float] = None,
boot_delay: Optional[str] = None,
boot_device: Optional[str] = None,
boot_os: Optional[str] = None,
boot_protocol: Optional[str] = None,
cpu_frequency: Optional[str] = None,
cpu_mode: Optional[str] = None,
enable_jumper_reset: Optional[bool] = None,
enter_setup_on: Optional[str] = None,
force_backup_booter: Optional[bool] = None,
init_delay: Optional[str] = None,
memory_data_rate: Optional[str] = None,
memory_frequency: Optional[str] = None,
preboot_etherboot: Optional[str] = None,
preboot_etherboot_server: Optional[str] = None,
protected_routerboot: Optional[str] = None,
reformat_hold_button: Optional[str] = None,
reformat_hold_button_max: Optional[str] = None,
regulatory_domain_ce: Optional[bool] = None,
silent_boot: Optional[bool] = None,
system_routerboard_settings_id: Optional[str] = None)
func NewSystemRouterboardSettings(ctx *Context, name string, args *SystemRouterboardSettingsArgs, opts ...ResourceOption) (*SystemRouterboardSettings, error)
public SystemRouterboardSettings(string name, SystemRouterboardSettingsArgs? args = null, CustomResourceOptions? opts = null)
public SystemRouterboardSettings(String name, SystemRouterboardSettingsArgs args)
public SystemRouterboardSettings(String name, SystemRouterboardSettingsArgs args, CustomResourceOptions options)
type: routeros:SystemRouterboardSettings
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 SystemRouterboardSettingsArgs
- 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 SystemRouterboardSettingsArgs
- 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 SystemRouterboardSettingsArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args SystemRouterboardSettingsArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args SystemRouterboardSettingsArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
SystemRouterboardSettings 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 SystemRouterboardSettings resource accepts the following input properties:
- Auto
Upgrade bool - An option to enable firmware upgrade automatically after the RouterOS upgrade.
- Baud
Rate double - An option to choose the onboard RS232 speed in bits per second.
- Boot
Delay string - A delay for a keystroke while booting.
- Boot
Device string - An option to choose the way RouterBOOT loads the operating system. Possible values:
ethernet
,flash-boot
,flash-boot-once-then-nand
,nand-if-fail-then-ethernet
,nand-only
,try-ethernet-once-then-nand
. - Boot
Os string - An option to choose the booting operating system for CRS3xx series switches. Possible values:
router-os
,swos
. - Boot
Protocol string - Boot protocol to use. Possible values:
bootp
,dhcp
. - Cpu
Frequency string - An option to change the CPU frequency of the device.
- Cpu
Mode string - An option whether to enter CPU suspend mode in HTL instruction. Possible values:
power-save
,regular
. - Enable
Jumper boolReset - An option to enable reset via the onboard jumper.
- Enter
Setup stringOn - An option to set which key will cause the BIOS to enter configuration mode during boot delay. Possible values:
any-key
,delete-key
. - Force
Backup boolBooter - An option to use the backup RouterBOOT.
- Init
Delay string - An option to set a delay before the USB port is initialized. Used for mPCIe modems with RB9xx series devices only.
- Memory
Data stringRate - An option to change the memory data rate of the device. Values depend on the model.
- Memory
Frequency string - An option to change the memory frequency of the device. Values depend on the model.
- Preboot
Etherboot string - An option to enable preboot
etherboot
, which runs before the regular boot device. - Preboot
Etherboot stringServer - An option to instruct
preboot-etherboot
to accept only from the specified Netinstall server. - Protected
Routerboot string - An option to disable any access to the RouterBOOT configuration settings over a console cable and disables the operation of the reset button to change the boot mode (Netinstall will be disabled). Possible values:
disabled
,enabled
. - string
- An option to enable resetting everything by pressing the button at power-on for longer than the specified time but less than
reformat_hold_button_max.
- string
- See
reformat_hold_button
. - Regulatory
Domain boolCe - An option to enable extra-low TX power for high antenna gain devices.
- Silent
Boot bool - An option to turn off output on the serial console and beeping sounds during booting.
- System
Routerboard stringSettings Id - The ID of this resource.
- ___
id_ double - Resource ID type (.id / name). This is an internal service field, setting a value is not required.
- ___
path_ string - Resource path for CRUD operations. This is an internal service field, setting a value is not required.
- Auto
Upgrade bool - An option to enable firmware upgrade automatically after the RouterOS upgrade.
- Baud
Rate float64 - An option to choose the onboard RS232 speed in bits per second.
- Boot
Delay string - A delay for a keystroke while booting.
- Boot
Device string - An option to choose the way RouterBOOT loads the operating system. Possible values:
ethernet
,flash-boot
,flash-boot-once-then-nand
,nand-if-fail-then-ethernet
,nand-only
,try-ethernet-once-then-nand
. - Boot
Os string - An option to choose the booting operating system for CRS3xx series switches. Possible values:
router-os
,swos
. - Boot
Protocol string - Boot protocol to use. Possible values:
bootp
,dhcp
. - Cpu
Frequency string - An option to change the CPU frequency of the device.
- Cpu
Mode string - An option whether to enter CPU suspend mode in HTL instruction. Possible values:
power-save
,regular
. - Enable
Jumper boolReset - An option to enable reset via the onboard jumper.
- Enter
Setup stringOn - An option to set which key will cause the BIOS to enter configuration mode during boot delay. Possible values:
any-key
,delete-key
. - Force
Backup boolBooter - An option to use the backup RouterBOOT.
- Init
Delay string - An option to set a delay before the USB port is initialized. Used for mPCIe modems with RB9xx series devices only.
- Memory
Data stringRate - An option to change the memory data rate of the device. Values depend on the model.
- Memory
Frequency string - An option to change the memory frequency of the device. Values depend on the model.
- Preboot
Etherboot string - An option to enable preboot
etherboot
, which runs before the regular boot device. - Preboot
Etherboot stringServer - An option to instruct
preboot-etherboot
to accept only from the specified Netinstall server. - Protected
Routerboot string - An option to disable any access to the RouterBOOT configuration settings over a console cable and disables the operation of the reset button to change the boot mode (Netinstall will be disabled). Possible values:
disabled
,enabled
. - string
- An option to enable resetting everything by pressing the button at power-on for longer than the specified time but less than
reformat_hold_button_max.
- string
- See
reformat_hold_button
. - Regulatory
Domain boolCe - An option to enable extra-low TX power for high antenna gain devices.
- Silent
Boot bool - An option to turn off output on the serial console and beeping sounds during booting.
- System
Routerboard stringSettings Id - The ID of this resource.
- ___
id_ float64 - Resource ID type (.id / name). This is an internal service field, setting a value is not required.
- ___
path_ string - Resource path for CRUD operations. This is an internal service field, setting a value is not required.
- ___
id_ Double - Resource ID type (.id / name). This is an internal service field, setting a value is not required.
- ___
path_ String - Resource path for CRUD operations. This is an internal service field, setting a value is not required.
- auto
Upgrade Boolean - An option to enable firmware upgrade automatically after the RouterOS upgrade.
- baud
Rate Double - An option to choose the onboard RS232 speed in bits per second.
- boot
Delay String - A delay for a keystroke while booting.
- boot
Device String - An option to choose the way RouterBOOT loads the operating system. Possible values:
ethernet
,flash-boot
,flash-boot-once-then-nand
,nand-if-fail-then-ethernet
,nand-only
,try-ethernet-once-then-nand
. - boot
Os String - An option to choose the booting operating system for CRS3xx series switches. Possible values:
router-os
,swos
. - boot
Protocol String - Boot protocol to use. Possible values:
bootp
,dhcp
. - cpu
Frequency String - An option to change the CPU frequency of the device.
- cpu
Mode String - An option whether to enter CPU suspend mode in HTL instruction. Possible values:
power-save
,regular
. - enable
Jumper BooleanReset - An option to enable reset via the onboard jumper.
- enter
Setup StringOn - An option to set which key will cause the BIOS to enter configuration mode during boot delay. Possible values:
any-key
,delete-key
. - force
Backup BooleanBooter - An option to use the backup RouterBOOT.
- init
Delay String - An option to set a delay before the USB port is initialized. Used for mPCIe modems with RB9xx series devices only.
- memory
Data StringRate - An option to change the memory data rate of the device. Values depend on the model.
- memory
Frequency String - An option to change the memory frequency of the device. Values depend on the model.
- preboot
Etherboot String - An option to enable preboot
etherboot
, which runs before the regular boot device. - preboot
Etherboot StringServer - An option to instruct
preboot-etherboot
to accept only from the specified Netinstall server. - protected
Routerboot String - An option to disable any access to the RouterBOOT configuration settings over a console cable and disables the operation of the reset button to change the boot mode (Netinstall will be disabled). Possible values:
disabled
,enabled
. - String
- An option to enable resetting everything by pressing the button at power-on for longer than the specified time but less than
reformat_hold_button_max.
- String
- See
reformat_hold_button
. - regulatory
Domain BooleanCe - An option to enable extra-low TX power for high antenna gain devices.
- silent
Boot Boolean - An option to turn off output on the serial console and beeping sounds during booting.
- system
Routerboard StringSettings Id - The ID of this resource.
- ___
id_ number - Resource ID type (.id / name). This is an internal service field, setting a value is not required.
- ___
path_ string - Resource path for CRUD operations. This is an internal service field, setting a value is not required.
- auto
Upgrade boolean - An option to enable firmware upgrade automatically after the RouterOS upgrade.
- baud
Rate number - An option to choose the onboard RS232 speed in bits per second.
- boot
Delay string - A delay for a keystroke while booting.
- boot
Device string - An option to choose the way RouterBOOT loads the operating system. Possible values:
ethernet
,flash-boot
,flash-boot-once-then-nand
,nand-if-fail-then-ethernet
,nand-only
,try-ethernet-once-then-nand
. - boot
Os string - An option to choose the booting operating system for CRS3xx series switches. Possible values:
router-os
,swos
. - boot
Protocol string - Boot protocol to use. Possible values:
bootp
,dhcp
. - cpu
Frequency string - An option to change the CPU frequency of the device.
- cpu
Mode string - An option whether to enter CPU suspend mode in HTL instruction. Possible values:
power-save
,regular
. - enable
Jumper booleanReset - An option to enable reset via the onboard jumper.
- enter
Setup stringOn - An option to set which key will cause the BIOS to enter configuration mode during boot delay. Possible values:
any-key
,delete-key
. - force
Backup booleanBooter - An option to use the backup RouterBOOT.
- init
Delay string - An option to set a delay before the USB port is initialized. Used for mPCIe modems with RB9xx series devices only.
- memory
Data stringRate - An option to change the memory data rate of the device. Values depend on the model.
- memory
Frequency string - An option to change the memory frequency of the device. Values depend on the model.
- preboot
Etherboot string - An option to enable preboot
etherboot
, which runs before the regular boot device. - preboot
Etherboot stringServer - An option to instruct
preboot-etherboot
to accept only from the specified Netinstall server. - protected
Routerboot string - An option to disable any access to the RouterBOOT configuration settings over a console cable and disables the operation of the reset button to change the boot mode (Netinstall will be disabled). Possible values:
disabled
,enabled
. - string
- An option to enable resetting everything by pressing the button at power-on for longer than the specified time but less than
reformat_hold_button_max.
- string
- See
reformat_hold_button
. - regulatory
Domain booleanCe - An option to enable extra-low TX power for high antenna gain devices.
- silent
Boot boolean - An option to turn off output on the serial console and beeping sounds during booting.
- system
Routerboard stringSettings Id - The ID of this resource.
- ___
id_ float - Resource ID type (.id / name). This is an internal service field, setting a value is not required.
- ___
path_ str - Resource path for CRUD operations. This is an internal service field, setting a value is not required.
- auto_
upgrade bool - An option to enable firmware upgrade automatically after the RouterOS upgrade.
- baud_
rate float - An option to choose the onboard RS232 speed in bits per second.
- boot_
delay str - A delay for a keystroke while booting.
- boot_
device str - An option to choose the way RouterBOOT loads the operating system. Possible values:
ethernet
,flash-boot
,flash-boot-once-then-nand
,nand-if-fail-then-ethernet
,nand-only
,try-ethernet-once-then-nand
. - boot_
os str - An option to choose the booting operating system for CRS3xx series switches. Possible values:
router-os
,swos
. - boot_
protocol str - Boot protocol to use. Possible values:
bootp
,dhcp
. - cpu_
frequency str - An option to change the CPU frequency of the device.
- cpu_
mode str - An option whether to enter CPU suspend mode in HTL instruction. Possible values:
power-save
,regular
. - enable_
jumper_ boolreset - An option to enable reset via the onboard jumper.
- enter_
setup_ stron - An option to set which key will cause the BIOS to enter configuration mode during boot delay. Possible values:
any-key
,delete-key
. - force_
backup_ boolbooter - An option to use the backup RouterBOOT.
- init_
delay str - An option to set a delay before the USB port is initialized. Used for mPCIe modems with RB9xx series devices only.
- memory_
data_ strrate - An option to change the memory data rate of the device. Values depend on the model.
- memory_
frequency str - An option to change the memory frequency of the device. Values depend on the model.
- preboot_
etherboot str - An option to enable preboot
etherboot
, which runs before the regular boot device. - preboot_
etherboot_ strserver - An option to instruct
preboot-etherboot
to accept only from the specified Netinstall server. - protected_
routerboot str - An option to disable any access to the RouterBOOT configuration settings over a console cable and disables the operation of the reset button to change the boot mode (Netinstall will be disabled). Possible values:
disabled
,enabled
. - str
- An option to enable resetting everything by pressing the button at power-on for longer than the specified time but less than
reformat_hold_button_max.
- str
- See
reformat_hold_button
. - regulatory_
domain_ boolce - An option to enable extra-low TX power for high antenna gain devices.
- silent_
boot bool - An option to turn off output on the serial console and beeping sounds during booting.
- system_
routerboard_ strsettings_ id - The ID of this resource.
- ___
id_ Number - Resource ID type (.id / name). This is an internal service field, setting a value is not required.
- ___
path_ String - Resource path for CRUD operations. This is an internal service field, setting a value is not required.
- auto
Upgrade Boolean - An option to enable firmware upgrade automatically after the RouterOS upgrade.
- baud
Rate Number - An option to choose the onboard RS232 speed in bits per second.
- boot
Delay String - A delay for a keystroke while booting.
- boot
Device String - An option to choose the way RouterBOOT loads the operating system. Possible values:
ethernet
,flash-boot
,flash-boot-once-then-nand
,nand-if-fail-then-ethernet
,nand-only
,try-ethernet-once-then-nand
. - boot
Os String - An option to choose the booting operating system for CRS3xx series switches. Possible values:
router-os
,swos
. - boot
Protocol String - Boot protocol to use. Possible values:
bootp
,dhcp
. - cpu
Frequency String - An option to change the CPU frequency of the device.
- cpu
Mode String - An option whether to enter CPU suspend mode in HTL instruction. Possible values:
power-save
,regular
. - enable
Jumper BooleanReset - An option to enable reset via the onboard jumper.
- enter
Setup StringOn - An option to set which key will cause the BIOS to enter configuration mode during boot delay. Possible values:
any-key
,delete-key
. - force
Backup BooleanBooter - An option to use the backup RouterBOOT.
- init
Delay String - An option to set a delay before the USB port is initialized. Used for mPCIe modems with RB9xx series devices only.
- memory
Data StringRate - An option to change the memory data rate of the device. Values depend on the model.
- memory
Frequency String - An option to change the memory frequency of the device. Values depend on the model.
- preboot
Etherboot String - An option to enable preboot
etherboot
, which runs before the regular boot device. - preboot
Etherboot StringServer - An option to instruct
preboot-etherboot
to accept only from the specified Netinstall server. - protected
Routerboot String - An option to disable any access to the RouterBOOT configuration settings over a console cable and disables the operation of the reset button to change the boot mode (Netinstall will be disabled). Possible values:
disabled
,enabled
. - String
- An option to enable resetting everything by pressing the button at power-on for longer than the specified time but less than
reformat_hold_button_max.
- String
- See
reformat_hold_button
. - regulatory
Domain BooleanCe - An option to enable extra-low TX power for high antenna gain devices.
- silent
Boot Boolean - An option to turn off output on the serial console and beeping sounds during booting.
- system
Routerboard StringSettings Id - The ID of this resource.
Outputs
All input properties are implicitly available as output properties. Additionally, the SystemRouterboardSettings 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 SystemRouterboardSettings Resource
Get an existing SystemRouterboardSettings 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?: SystemRouterboardSettingsState, opts?: CustomResourceOptions): SystemRouterboardSettings
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
___id_: Optional[float] = None,
___path_: Optional[str] = None,
auto_upgrade: Optional[bool] = None,
baud_rate: Optional[float] = None,
boot_delay: Optional[str] = None,
boot_device: Optional[str] = None,
boot_os: Optional[str] = None,
boot_protocol: Optional[str] = None,
cpu_frequency: Optional[str] = None,
cpu_mode: Optional[str] = None,
enable_jumper_reset: Optional[bool] = None,
enter_setup_on: Optional[str] = None,
force_backup_booter: Optional[bool] = None,
init_delay: Optional[str] = None,
memory_data_rate: Optional[str] = None,
memory_frequency: Optional[str] = None,
preboot_etherboot: Optional[str] = None,
preboot_etherboot_server: Optional[str] = None,
protected_routerboot: Optional[str] = None,
reformat_hold_button: Optional[str] = None,
reformat_hold_button_max: Optional[str] = None,
regulatory_domain_ce: Optional[bool] = None,
silent_boot: Optional[bool] = None,
system_routerboard_settings_id: Optional[str] = None) -> SystemRouterboardSettings
func GetSystemRouterboardSettings(ctx *Context, name string, id IDInput, state *SystemRouterboardSettingsState, opts ...ResourceOption) (*SystemRouterboardSettings, error)
public static SystemRouterboardSettings Get(string name, Input<string> id, SystemRouterboardSettingsState? state, CustomResourceOptions? opts = null)
public static SystemRouterboardSettings get(String name, Output<String> id, SystemRouterboardSettingsState state, CustomResourceOptions options)
resources: _: type: routeros:SystemRouterboardSettings 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.
- Auto
Upgrade bool - An option to enable firmware upgrade automatically after the RouterOS upgrade.
- Baud
Rate double - An option to choose the onboard RS232 speed in bits per second.
- Boot
Delay string - A delay for a keystroke while booting.
- Boot
Device string - An option to choose the way RouterBOOT loads the operating system. Possible values:
ethernet
,flash-boot
,flash-boot-once-then-nand
,nand-if-fail-then-ethernet
,nand-only
,try-ethernet-once-then-nand
. - Boot
Os string - An option to choose the booting operating system for CRS3xx series switches. Possible values:
router-os
,swos
. - Boot
Protocol string - Boot protocol to use. Possible values:
bootp
,dhcp
. - Cpu
Frequency string - An option to change the CPU frequency of the device.
- Cpu
Mode string - An option whether to enter CPU suspend mode in HTL instruction. Possible values:
power-save
,regular
. - Enable
Jumper boolReset - An option to enable reset via the onboard jumper.
- Enter
Setup stringOn - An option to set which key will cause the BIOS to enter configuration mode during boot delay. Possible values:
any-key
,delete-key
. - Force
Backup boolBooter - An option to use the backup RouterBOOT.
- Init
Delay string - An option to set a delay before the USB port is initialized. Used for mPCIe modems with RB9xx series devices only.
- Memory
Data stringRate - An option to change the memory data rate of the device. Values depend on the model.
- Memory
Frequency string - An option to change the memory frequency of the device. Values depend on the model.
- Preboot
Etherboot string - An option to enable preboot
etherboot
, which runs before the regular boot device. - Preboot
Etherboot stringServer - An option to instruct
preboot-etherboot
to accept only from the specified Netinstall server. - Protected
Routerboot string - An option to disable any access to the RouterBOOT configuration settings over a console cable and disables the operation of the reset button to change the boot mode (Netinstall will be disabled). Possible values:
disabled
,enabled
. - string
- An option to enable resetting everything by pressing the button at power-on for longer than the specified time but less than
reformat_hold_button_max.
- string
- See
reformat_hold_button
. - Regulatory
Domain boolCe - An option to enable extra-low TX power for high antenna gain devices.
- Silent
Boot bool - An option to turn off output on the serial console and beeping sounds during booting.
- System
Routerboard stringSettings Id - The ID of this resource.
- ___
id_ double - Resource ID type (.id / name). This is an internal service field, setting a value is not required.
- ___
path_ string - Resource path for CRUD operations. This is an internal service field, setting a value is not required.
- Auto
Upgrade bool - An option to enable firmware upgrade automatically after the RouterOS upgrade.
- Baud
Rate float64 - An option to choose the onboard RS232 speed in bits per second.
- Boot
Delay string - A delay for a keystroke while booting.
- Boot
Device string - An option to choose the way RouterBOOT loads the operating system. Possible values:
ethernet
,flash-boot
,flash-boot-once-then-nand
,nand-if-fail-then-ethernet
,nand-only
,try-ethernet-once-then-nand
. - Boot
Os string - An option to choose the booting operating system for CRS3xx series switches. Possible values:
router-os
,swos
. - Boot
Protocol string - Boot protocol to use. Possible values:
bootp
,dhcp
. - Cpu
Frequency string - An option to change the CPU frequency of the device.
- Cpu
Mode string - An option whether to enter CPU suspend mode in HTL instruction. Possible values:
power-save
,regular
. - Enable
Jumper boolReset - An option to enable reset via the onboard jumper.
- Enter
Setup stringOn - An option to set which key will cause the BIOS to enter configuration mode during boot delay. Possible values:
any-key
,delete-key
. - Force
Backup boolBooter - An option to use the backup RouterBOOT.
- Init
Delay string - An option to set a delay before the USB port is initialized. Used for mPCIe modems with RB9xx series devices only.
- Memory
Data stringRate - An option to change the memory data rate of the device. Values depend on the model.
- Memory
Frequency string - An option to change the memory frequency of the device. Values depend on the model.
- Preboot
Etherboot string - An option to enable preboot
etherboot
, which runs before the regular boot device. - Preboot
Etherboot stringServer - An option to instruct
preboot-etherboot
to accept only from the specified Netinstall server. - Protected
Routerboot string - An option to disable any access to the RouterBOOT configuration settings over a console cable and disables the operation of the reset button to change the boot mode (Netinstall will be disabled). Possible values:
disabled
,enabled
. - string
- An option to enable resetting everything by pressing the button at power-on for longer than the specified time but less than
reformat_hold_button_max.
- string
- See
reformat_hold_button
. - Regulatory
Domain boolCe - An option to enable extra-low TX power for high antenna gain devices.
- Silent
Boot bool - An option to turn off output on the serial console and beeping sounds during booting.
- System
Routerboard stringSettings Id - The ID of this resource.
- ___
id_ float64 - Resource ID type (.id / name). This is an internal service field, setting a value is not required.
- ___
path_ string - Resource path for CRUD operations. This is an internal service field, setting a value is not required.
- ___
id_ Double - Resource ID type (.id / name). This is an internal service field, setting a value is not required.
- ___
path_ String - Resource path for CRUD operations. This is an internal service field, setting a value is not required.
- auto
Upgrade Boolean - An option to enable firmware upgrade automatically after the RouterOS upgrade.
- baud
Rate Double - An option to choose the onboard RS232 speed in bits per second.
- boot
Delay String - A delay for a keystroke while booting.
- boot
Device String - An option to choose the way RouterBOOT loads the operating system. Possible values:
ethernet
,flash-boot
,flash-boot-once-then-nand
,nand-if-fail-then-ethernet
,nand-only
,try-ethernet-once-then-nand
. - boot
Os String - An option to choose the booting operating system for CRS3xx series switches. Possible values:
router-os
,swos
. - boot
Protocol String - Boot protocol to use. Possible values:
bootp
,dhcp
. - cpu
Frequency String - An option to change the CPU frequency of the device.
- cpu
Mode String - An option whether to enter CPU suspend mode in HTL instruction. Possible values:
power-save
,regular
. - enable
Jumper BooleanReset - An option to enable reset via the onboard jumper.
- enter
Setup StringOn - An option to set which key will cause the BIOS to enter configuration mode during boot delay. Possible values:
any-key
,delete-key
. - force
Backup BooleanBooter - An option to use the backup RouterBOOT.
- init
Delay String - An option to set a delay before the USB port is initialized. Used for mPCIe modems with RB9xx series devices only.
- memory
Data StringRate - An option to change the memory data rate of the device. Values depend on the model.
- memory
Frequency String - An option to change the memory frequency of the device. Values depend on the model.
- preboot
Etherboot String - An option to enable preboot
etherboot
, which runs before the regular boot device. - preboot
Etherboot StringServer - An option to instruct
preboot-etherboot
to accept only from the specified Netinstall server. - protected
Routerboot String - An option to disable any access to the RouterBOOT configuration settings over a console cable and disables the operation of the reset button to change the boot mode (Netinstall will be disabled). Possible values:
disabled
,enabled
. - String
- An option to enable resetting everything by pressing the button at power-on for longer than the specified time but less than
reformat_hold_button_max.
- String
- See
reformat_hold_button
. - regulatory
Domain BooleanCe - An option to enable extra-low TX power for high antenna gain devices.
- silent
Boot Boolean - An option to turn off output on the serial console and beeping sounds during booting.
- system
Routerboard StringSettings Id - The ID of this resource.
- ___
id_ number - Resource ID type (.id / name). This is an internal service field, setting a value is not required.
- ___
path_ string - Resource path for CRUD operations. This is an internal service field, setting a value is not required.
- auto
Upgrade boolean - An option to enable firmware upgrade automatically after the RouterOS upgrade.
- baud
Rate number - An option to choose the onboard RS232 speed in bits per second.
- boot
Delay string - A delay for a keystroke while booting.
- boot
Device string - An option to choose the way RouterBOOT loads the operating system. Possible values:
ethernet
,flash-boot
,flash-boot-once-then-nand
,nand-if-fail-then-ethernet
,nand-only
,try-ethernet-once-then-nand
. - boot
Os string - An option to choose the booting operating system for CRS3xx series switches. Possible values:
router-os
,swos
. - boot
Protocol string - Boot protocol to use. Possible values:
bootp
,dhcp
. - cpu
Frequency string - An option to change the CPU frequency of the device.
- cpu
Mode string - An option whether to enter CPU suspend mode in HTL instruction. Possible values:
power-save
,regular
. - enable
Jumper booleanReset - An option to enable reset via the onboard jumper.
- enter
Setup stringOn - An option to set which key will cause the BIOS to enter configuration mode during boot delay. Possible values:
any-key
,delete-key
. - force
Backup booleanBooter - An option to use the backup RouterBOOT.
- init
Delay string - An option to set a delay before the USB port is initialized. Used for mPCIe modems with RB9xx series devices only.
- memory
Data stringRate - An option to change the memory data rate of the device. Values depend on the model.
- memory
Frequency string - An option to change the memory frequency of the device. Values depend on the model.
- preboot
Etherboot string - An option to enable preboot
etherboot
, which runs before the regular boot device. - preboot
Etherboot stringServer - An option to instruct
preboot-etherboot
to accept only from the specified Netinstall server. - protected
Routerboot string - An option to disable any access to the RouterBOOT configuration settings over a console cable and disables the operation of the reset button to change the boot mode (Netinstall will be disabled). Possible values:
disabled
,enabled
. - string
- An option to enable resetting everything by pressing the button at power-on for longer than the specified time but less than
reformat_hold_button_max.
- string
- See
reformat_hold_button
. - regulatory
Domain booleanCe - An option to enable extra-low TX power for high antenna gain devices.
- silent
Boot boolean - An option to turn off output on the serial console and beeping sounds during booting.
- system
Routerboard stringSettings Id - The ID of this resource.
- ___
id_ float - Resource ID type (.id / name). This is an internal service field, setting a value is not required.
- ___
path_ str - Resource path for CRUD operations. This is an internal service field, setting a value is not required.
- auto_
upgrade bool - An option to enable firmware upgrade automatically after the RouterOS upgrade.
- baud_
rate float - An option to choose the onboard RS232 speed in bits per second.
- boot_
delay str - A delay for a keystroke while booting.
- boot_
device str - An option to choose the way RouterBOOT loads the operating system. Possible values:
ethernet
,flash-boot
,flash-boot-once-then-nand
,nand-if-fail-then-ethernet
,nand-only
,try-ethernet-once-then-nand
. - boot_
os str - An option to choose the booting operating system for CRS3xx series switches. Possible values:
router-os
,swos
. - boot_
protocol str - Boot protocol to use. Possible values:
bootp
,dhcp
. - cpu_
frequency str - An option to change the CPU frequency of the device.
- cpu_
mode str - An option whether to enter CPU suspend mode in HTL instruction. Possible values:
power-save
,regular
. - enable_
jumper_ boolreset - An option to enable reset via the onboard jumper.
- enter_
setup_ stron - An option to set which key will cause the BIOS to enter configuration mode during boot delay. Possible values:
any-key
,delete-key
. - force_
backup_ boolbooter - An option to use the backup RouterBOOT.
- init_
delay str - An option to set a delay before the USB port is initialized. Used for mPCIe modems with RB9xx series devices only.
- memory_
data_ strrate - An option to change the memory data rate of the device. Values depend on the model.
- memory_
frequency str - An option to change the memory frequency of the device. Values depend on the model.
- preboot_
etherboot str - An option to enable preboot
etherboot
, which runs before the regular boot device. - preboot_
etherboot_ strserver - An option to instruct
preboot-etherboot
to accept only from the specified Netinstall server. - protected_
routerboot str - An option to disable any access to the RouterBOOT configuration settings over a console cable and disables the operation of the reset button to change the boot mode (Netinstall will be disabled). Possible values:
disabled
,enabled
. - str
- An option to enable resetting everything by pressing the button at power-on for longer than the specified time but less than
reformat_hold_button_max.
- str
- See
reformat_hold_button
. - regulatory_
domain_ boolce - An option to enable extra-low TX power for high antenna gain devices.
- silent_
boot bool - An option to turn off output on the serial console and beeping sounds during booting.
- system_
routerboard_ strsettings_ id - The ID of this resource.
- ___
id_ Number - Resource ID type (.id / name). This is an internal service field, setting a value is not required.
- ___
path_ String - Resource path for CRUD operations. This is an internal service field, setting a value is not required.
- auto
Upgrade Boolean - An option to enable firmware upgrade automatically after the RouterOS upgrade.
- baud
Rate Number - An option to choose the onboard RS232 speed in bits per second.
- boot
Delay String - A delay for a keystroke while booting.
- boot
Device String - An option to choose the way RouterBOOT loads the operating system. Possible values:
ethernet
,flash-boot
,flash-boot-once-then-nand
,nand-if-fail-then-ethernet
,nand-only
,try-ethernet-once-then-nand
. - boot
Os String - An option to choose the booting operating system for CRS3xx series switches. Possible values:
router-os
,swos
. - boot
Protocol String - Boot protocol to use. Possible values:
bootp
,dhcp
. - cpu
Frequency String - An option to change the CPU frequency of the device.
- cpu
Mode String - An option whether to enter CPU suspend mode in HTL instruction. Possible values:
power-save
,regular
. - enable
Jumper BooleanReset - An option to enable reset via the onboard jumper.
- enter
Setup StringOn - An option to set which key will cause the BIOS to enter configuration mode during boot delay. Possible values:
any-key
,delete-key
. - force
Backup BooleanBooter - An option to use the backup RouterBOOT.
- init
Delay String - An option to set a delay before the USB port is initialized. Used for mPCIe modems with RB9xx series devices only.
- memory
Data StringRate - An option to change the memory data rate of the device. Values depend on the model.
- memory
Frequency String - An option to change the memory frequency of the device. Values depend on the model.
- preboot
Etherboot String - An option to enable preboot
etherboot
, which runs before the regular boot device. - preboot
Etherboot StringServer - An option to instruct
preboot-etherboot
to accept only from the specified Netinstall server. - protected
Routerboot String - An option to disable any access to the RouterBOOT configuration settings over a console cable and disables the operation of the reset button to change the boot mode (Netinstall will be disabled). Possible values:
disabled
,enabled
. - String
- An option to enable resetting everything by pressing the button at power-on for longer than the specified time but less than
reformat_hold_button_max.
- String
- See
reformat_hold_button
. - regulatory
Domain BooleanCe - An option to enable extra-low TX power for high antenna gain devices.
- silent
Boot Boolean - An option to turn off output on the serial console and beeping sounds during booting.
- system
Routerboard StringSettings Id - The ID of this resource.
Import
$ pulumi import routeros:index/systemRouterboardSettings:SystemRouterboardSettings settings .
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- routeros terraform-routeros/terraform-provider-routeros
- License
- Notes
- This Pulumi package is based on the
routeros
Terraform Provider.