fortios.switchcontroller.Settings8021X
Explore with Pulumi AI
Configure global 802.1X settings.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as fortios from "@pulumiverse/fortios";
const trname = new fortios.switchcontroller.Settings8021X("trname", {
linkDownAuth: "set-unauth",
maxReauthAttempt: 3,
reauthPeriod: 12,
});
import pulumi
import pulumiverse_fortios as fortios
trname = fortios.switchcontroller.Settings8021X("trname",
link_down_auth="set-unauth",
max_reauth_attempt=3,
reauth_period=12)
package main
import (
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
"github.com/pulumiverse/pulumi-fortios/sdk/go/fortios/switchcontroller"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := switchcontroller.NewSettings8021X(ctx, "trname", &switchcontroller.Settings8021XArgs{
LinkDownAuth: pulumi.String("set-unauth"),
MaxReauthAttempt: pulumi.Int(3),
ReauthPeriod: pulumi.Int(12),
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Fortios = Pulumiverse.Fortios;
return await Deployment.RunAsync(() =>
{
var trname = new Fortios.Switchcontroller.Settings8021X("trname", new()
{
LinkDownAuth = "set-unauth",
MaxReauthAttempt = 3,
ReauthPeriod = 12,
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.fortios.switchcontroller.Settings8021X;
import com.pulumi.fortios.switchcontroller.Settings8021XArgs;
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 Settings8021X("trname", Settings8021XArgs.builder()
.linkDownAuth("set-unauth")
.maxReauthAttempt(3)
.reauthPeriod(12)
.build());
}
}
resources:
trname:
type: fortios:switchcontroller:Settings8021X
properties:
linkDownAuth: set-unauth
maxReauthAttempt: 3
reauthPeriod: 12
Create Settings8021X Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new Settings8021X(name: string, args?: Settings8021XArgs, opts?: CustomResourceOptions);
@overload
def Settings8021X(resource_name: str,
args: Optional[Settings8021XArgs] = None,
opts: Optional[ResourceOptions] = None)
@overload
def Settings8021X(resource_name: str,
opts: Optional[ResourceOptions] = None,
link_down_auth: Optional[str] = None,
mab_reauth: Optional[str] = None,
mac_called_station_delimiter: Optional[str] = None,
mac_calling_station_delimiter: Optional[str] = None,
mac_case: Optional[str] = None,
mac_password_delimiter: Optional[str] = None,
mac_username_delimiter: Optional[str] = None,
max_reauth_attempt: Optional[int] = None,
reauth_period: Optional[int] = None,
tx_period: Optional[int] = None,
vdomparam: Optional[str] = None)
func NewSettings8021X(ctx *Context, name string, args *Settings8021XArgs, opts ...ResourceOption) (*Settings8021X, error)
public Settings8021X(string name, Settings8021XArgs? args = null, CustomResourceOptions? opts = null)
public Settings8021X(String name, Settings8021XArgs args)
public Settings8021X(String name, Settings8021XArgs args, CustomResourceOptions options)
type: fortios:switchcontroller:Settings8021X
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 Settings8021XArgs
- 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 Settings8021XArgs
- 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 Settings8021XArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args Settings8021XArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args Settings8021XArgs
- 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 settings8021XResource = new Fortios.Switchcontroller.Settings8021X("settings8021XResource", new()
{
LinkDownAuth = "string",
MabReauth = "string",
MacCalledStationDelimiter = "string",
MacCallingStationDelimiter = "string",
MacCase = "string",
MacPasswordDelimiter = "string",
MacUsernameDelimiter = "string",
MaxReauthAttempt = 0,
ReauthPeriod = 0,
TxPeriod = 0,
Vdomparam = "string",
});
example, err := switchcontroller.NewSettings8021X(ctx, "settings8021XResource", &switchcontroller.Settings8021XArgs{
LinkDownAuth: pulumi.String("string"),
MabReauth: pulumi.String("string"),
MacCalledStationDelimiter: pulumi.String("string"),
MacCallingStationDelimiter: pulumi.String("string"),
MacCase: pulumi.String("string"),
MacPasswordDelimiter: pulumi.String("string"),
MacUsernameDelimiter: pulumi.String("string"),
MaxReauthAttempt: pulumi.Int(0),
ReauthPeriod: pulumi.Int(0),
TxPeriod: pulumi.Int(0),
Vdomparam: pulumi.String("string"),
})
var settings8021XResource = new Settings8021X("settings8021XResource", Settings8021XArgs.builder()
.linkDownAuth("string")
.mabReauth("string")
.macCalledStationDelimiter("string")
.macCallingStationDelimiter("string")
.macCase("string")
.macPasswordDelimiter("string")
.macUsernameDelimiter("string")
.maxReauthAttempt(0)
.reauthPeriod(0)
.txPeriod(0)
.vdomparam("string")
.build());
settings8021_x_resource = fortios.switchcontroller.Settings8021X("settings8021XResource",
link_down_auth="string",
mab_reauth="string",
mac_called_station_delimiter="string",
mac_calling_station_delimiter="string",
mac_case="string",
mac_password_delimiter="string",
mac_username_delimiter="string",
max_reauth_attempt=0,
reauth_period=0,
tx_period=0,
vdomparam="string")
const settings8021XResource = new fortios.switchcontroller.Settings8021X("settings8021XResource", {
linkDownAuth: "string",
mabReauth: "string",
macCalledStationDelimiter: "string",
macCallingStationDelimiter: "string",
macCase: "string",
macPasswordDelimiter: "string",
macUsernameDelimiter: "string",
maxReauthAttempt: 0,
reauthPeriod: 0,
txPeriod: 0,
vdomparam: "string",
});
type: fortios:switchcontroller:Settings8021X
properties:
linkDownAuth: string
mabReauth: string
macCalledStationDelimiter: string
macCallingStationDelimiter: string
macCase: string
macPasswordDelimiter: string
macUsernameDelimiter: string
maxReauthAttempt: 0
reauthPeriod: 0
txPeriod: 0
vdomparam: string
Settings8021X Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
The Settings8021X resource accepts the following input properties:
- Link
Down stringAuth - Interface-reauthentication state to set if a link is down. Valid values:
set-unauth
,no-action
. - Mab
Reauth string - Enable/disable MAB re-authentication. Valid values:
disable
,enable
. - Mac
Called stringStation Delimiter - MAC called station delimiter (default = hyphen). Valid values:
colon
,hyphen
,none
,single-hyphen
. - Mac
Calling stringStation Delimiter - MAC calling station delimiter (default = hyphen). Valid values:
colon
,hyphen
,none
,single-hyphen
. - Mac
Case string - MAC case (default = lowercase). Valid values:
lowercase
,uppercase
. - Mac
Password stringDelimiter - MAC authentication password delimiter (default = hyphen). Valid values:
colon
,hyphen
,none
,single-hyphen
. - Mac
Username stringDelimiter - MAC authentication username delimiter (default = hyphen). Valid values:
colon
,hyphen
,none
,single-hyphen
. - Max
Reauth intAttempt - Maximum number of authentication attempts (0 - 15, default = 3).
- Reauth
Period int - Period of time to allow for reauthentication (1 - 1440 sec, default = 60, 0 = disable reauthentication).
- Tx
Period int - 802.1X Tx period (seconds, default=30).
- Vdomparam string
- Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
- Link
Down stringAuth - Interface-reauthentication state to set if a link is down. Valid values:
set-unauth
,no-action
. - Mab
Reauth string - Enable/disable MAB re-authentication. Valid values:
disable
,enable
. - Mac
Called stringStation Delimiter - MAC called station delimiter (default = hyphen). Valid values:
colon
,hyphen
,none
,single-hyphen
. - Mac
Calling stringStation Delimiter - MAC calling station delimiter (default = hyphen). Valid values:
colon
,hyphen
,none
,single-hyphen
. - Mac
Case string - MAC case (default = lowercase). Valid values:
lowercase
,uppercase
. - Mac
Password stringDelimiter - MAC authentication password delimiter (default = hyphen). Valid values:
colon
,hyphen
,none
,single-hyphen
. - Mac
Username stringDelimiter - MAC authentication username delimiter (default = hyphen). Valid values:
colon
,hyphen
,none
,single-hyphen
. - Max
Reauth intAttempt - Maximum number of authentication attempts (0 - 15, default = 3).
- Reauth
Period int - Period of time to allow for reauthentication (1 - 1440 sec, default = 60, 0 = disable reauthentication).
- Tx
Period int - 802.1X Tx period (seconds, default=30).
- Vdomparam string
- Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
- link
Down StringAuth - Interface-reauthentication state to set if a link is down. Valid values:
set-unauth
,no-action
. - mab
Reauth String - Enable/disable MAB re-authentication. Valid values:
disable
,enable
. - mac
Called StringStation Delimiter - MAC called station delimiter (default = hyphen). Valid values:
colon
,hyphen
,none
,single-hyphen
. - mac
Calling StringStation Delimiter - MAC calling station delimiter (default = hyphen). Valid values:
colon
,hyphen
,none
,single-hyphen
. - mac
Case String - MAC case (default = lowercase). Valid values:
lowercase
,uppercase
. - mac
Password StringDelimiter - MAC authentication password delimiter (default = hyphen). Valid values:
colon
,hyphen
,none
,single-hyphen
. - mac
Username StringDelimiter - MAC authentication username delimiter (default = hyphen). Valid values:
colon
,hyphen
,none
,single-hyphen
. - max
Reauth IntegerAttempt - Maximum number of authentication attempts (0 - 15, default = 3).
- reauth
Period Integer - Period of time to allow for reauthentication (1 - 1440 sec, default = 60, 0 = disable reauthentication).
- tx
Period Integer - 802.1X Tx period (seconds, default=30).
- vdomparam String
- Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
- link
Down stringAuth - Interface-reauthentication state to set if a link is down. Valid values:
set-unauth
,no-action
. - mab
Reauth string - Enable/disable MAB re-authentication. Valid values:
disable
,enable
. - mac
Called stringStation Delimiter - MAC called station delimiter (default = hyphen). Valid values:
colon
,hyphen
,none
,single-hyphen
. - mac
Calling stringStation Delimiter - MAC calling station delimiter (default = hyphen). Valid values:
colon
,hyphen
,none
,single-hyphen
. - mac
Case string - MAC case (default = lowercase). Valid values:
lowercase
,uppercase
. - mac
Password stringDelimiter - MAC authentication password delimiter (default = hyphen). Valid values:
colon
,hyphen
,none
,single-hyphen
. - mac
Username stringDelimiter - MAC authentication username delimiter (default = hyphen). Valid values:
colon
,hyphen
,none
,single-hyphen
. - max
Reauth numberAttempt - Maximum number of authentication attempts (0 - 15, default = 3).
- reauth
Period number - Period of time to allow for reauthentication (1 - 1440 sec, default = 60, 0 = disable reauthentication).
- tx
Period number - 802.1X Tx period (seconds, default=30).
- vdomparam string
- Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
- link_
down_ strauth - Interface-reauthentication state to set if a link is down. Valid values:
set-unauth
,no-action
. - mab_
reauth str - Enable/disable MAB re-authentication. Valid values:
disable
,enable
. - mac_
called_ strstation_ delimiter - MAC called station delimiter (default = hyphen). Valid values:
colon
,hyphen
,none
,single-hyphen
. - mac_
calling_ strstation_ delimiter - MAC calling station delimiter (default = hyphen). Valid values:
colon
,hyphen
,none
,single-hyphen
. - mac_
case str - MAC case (default = lowercase). Valid values:
lowercase
,uppercase
. - mac_
password_ strdelimiter - MAC authentication password delimiter (default = hyphen). Valid values:
colon
,hyphen
,none
,single-hyphen
. - mac_
username_ strdelimiter - MAC authentication username delimiter (default = hyphen). Valid values:
colon
,hyphen
,none
,single-hyphen
. - max_
reauth_ intattempt - Maximum number of authentication attempts (0 - 15, default = 3).
- reauth_
period int - Period of time to allow for reauthentication (1 - 1440 sec, default = 60, 0 = disable reauthentication).
- tx_
period int - 802.1X Tx period (seconds, default=30).
- vdomparam str
- Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
- link
Down StringAuth - Interface-reauthentication state to set if a link is down. Valid values:
set-unauth
,no-action
. - mab
Reauth String - Enable/disable MAB re-authentication. Valid values:
disable
,enable
. - mac
Called StringStation Delimiter - MAC called station delimiter (default = hyphen). Valid values:
colon
,hyphen
,none
,single-hyphen
. - mac
Calling StringStation Delimiter - MAC calling station delimiter (default = hyphen). Valid values:
colon
,hyphen
,none
,single-hyphen
. - mac
Case String - MAC case (default = lowercase). Valid values:
lowercase
,uppercase
. - mac
Password StringDelimiter - MAC authentication password delimiter (default = hyphen). Valid values:
colon
,hyphen
,none
,single-hyphen
. - mac
Username StringDelimiter - MAC authentication username delimiter (default = hyphen). Valid values:
colon
,hyphen
,none
,single-hyphen
. - max
Reauth NumberAttempt - Maximum number of authentication attempts (0 - 15, default = 3).
- reauth
Period Number - Period of time to allow for reauthentication (1 - 1440 sec, default = 60, 0 = disable reauthentication).
- tx
Period Number - 802.1X Tx period (seconds, default=30).
- vdomparam String
- Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
Outputs
All input properties are implicitly available as output properties. Additionally, the Settings8021X 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 Settings8021X Resource
Get an existing Settings8021X 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?: Settings8021XState, opts?: CustomResourceOptions): Settings8021X
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
link_down_auth: Optional[str] = None,
mab_reauth: Optional[str] = None,
mac_called_station_delimiter: Optional[str] = None,
mac_calling_station_delimiter: Optional[str] = None,
mac_case: Optional[str] = None,
mac_password_delimiter: Optional[str] = None,
mac_username_delimiter: Optional[str] = None,
max_reauth_attempt: Optional[int] = None,
reauth_period: Optional[int] = None,
tx_period: Optional[int] = None,
vdomparam: Optional[str] = None) -> Settings8021X
func GetSettings8021X(ctx *Context, name string, id IDInput, state *Settings8021XState, opts ...ResourceOption) (*Settings8021X, error)
public static Settings8021X Get(string name, Input<string> id, Settings8021XState? state, CustomResourceOptions? opts = null)
public static Settings8021X get(String name, Output<String> id, Settings8021XState 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.
- Link
Down stringAuth - Interface-reauthentication state to set if a link is down. Valid values:
set-unauth
,no-action
. - Mab
Reauth string - Enable/disable MAB re-authentication. Valid values:
disable
,enable
. - Mac
Called stringStation Delimiter - MAC called station delimiter (default = hyphen). Valid values:
colon
,hyphen
,none
,single-hyphen
. - Mac
Calling stringStation Delimiter - MAC calling station delimiter (default = hyphen). Valid values:
colon
,hyphen
,none
,single-hyphen
. - Mac
Case string - MAC case (default = lowercase). Valid values:
lowercase
,uppercase
. - Mac
Password stringDelimiter - MAC authentication password delimiter (default = hyphen). Valid values:
colon
,hyphen
,none
,single-hyphen
. - Mac
Username stringDelimiter - MAC authentication username delimiter (default = hyphen). Valid values:
colon
,hyphen
,none
,single-hyphen
. - Max
Reauth intAttempt - Maximum number of authentication attempts (0 - 15, default = 3).
- Reauth
Period int - Period of time to allow for reauthentication (1 - 1440 sec, default = 60, 0 = disable reauthentication).
- Tx
Period int - 802.1X Tx period (seconds, default=30).
- Vdomparam string
- Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
- Link
Down stringAuth - Interface-reauthentication state to set if a link is down. Valid values:
set-unauth
,no-action
. - Mab
Reauth string - Enable/disable MAB re-authentication. Valid values:
disable
,enable
. - Mac
Called stringStation Delimiter - MAC called station delimiter (default = hyphen). Valid values:
colon
,hyphen
,none
,single-hyphen
. - Mac
Calling stringStation Delimiter - MAC calling station delimiter (default = hyphen). Valid values:
colon
,hyphen
,none
,single-hyphen
. - Mac
Case string - MAC case (default = lowercase). Valid values:
lowercase
,uppercase
. - Mac
Password stringDelimiter - MAC authentication password delimiter (default = hyphen). Valid values:
colon
,hyphen
,none
,single-hyphen
. - Mac
Username stringDelimiter - MAC authentication username delimiter (default = hyphen). Valid values:
colon
,hyphen
,none
,single-hyphen
. - Max
Reauth intAttempt - Maximum number of authentication attempts (0 - 15, default = 3).
- Reauth
Period int - Period of time to allow for reauthentication (1 - 1440 sec, default = 60, 0 = disable reauthentication).
- Tx
Period int - 802.1X Tx period (seconds, default=30).
- Vdomparam string
- Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
- link
Down StringAuth - Interface-reauthentication state to set if a link is down. Valid values:
set-unauth
,no-action
. - mab
Reauth String - Enable/disable MAB re-authentication. Valid values:
disable
,enable
. - mac
Called StringStation Delimiter - MAC called station delimiter (default = hyphen). Valid values:
colon
,hyphen
,none
,single-hyphen
. - mac
Calling StringStation Delimiter - MAC calling station delimiter (default = hyphen). Valid values:
colon
,hyphen
,none
,single-hyphen
. - mac
Case String - MAC case (default = lowercase). Valid values:
lowercase
,uppercase
. - mac
Password StringDelimiter - MAC authentication password delimiter (default = hyphen). Valid values:
colon
,hyphen
,none
,single-hyphen
. - mac
Username StringDelimiter - MAC authentication username delimiter (default = hyphen). Valid values:
colon
,hyphen
,none
,single-hyphen
. - max
Reauth IntegerAttempt - Maximum number of authentication attempts (0 - 15, default = 3).
- reauth
Period Integer - Period of time to allow for reauthentication (1 - 1440 sec, default = 60, 0 = disable reauthentication).
- tx
Period Integer - 802.1X Tx period (seconds, default=30).
- vdomparam String
- Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
- link
Down stringAuth - Interface-reauthentication state to set if a link is down. Valid values:
set-unauth
,no-action
. - mab
Reauth string - Enable/disable MAB re-authentication. Valid values:
disable
,enable
. - mac
Called stringStation Delimiter - MAC called station delimiter (default = hyphen). Valid values:
colon
,hyphen
,none
,single-hyphen
. - mac
Calling stringStation Delimiter - MAC calling station delimiter (default = hyphen). Valid values:
colon
,hyphen
,none
,single-hyphen
. - mac
Case string - MAC case (default = lowercase). Valid values:
lowercase
,uppercase
. - mac
Password stringDelimiter - MAC authentication password delimiter (default = hyphen). Valid values:
colon
,hyphen
,none
,single-hyphen
. - mac
Username stringDelimiter - MAC authentication username delimiter (default = hyphen). Valid values:
colon
,hyphen
,none
,single-hyphen
. - max
Reauth numberAttempt - Maximum number of authentication attempts (0 - 15, default = 3).
- reauth
Period number - Period of time to allow for reauthentication (1 - 1440 sec, default = 60, 0 = disable reauthentication).
- tx
Period number - 802.1X Tx period (seconds, default=30).
- vdomparam string
- Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
- link_
down_ strauth - Interface-reauthentication state to set if a link is down. Valid values:
set-unauth
,no-action
. - mab_
reauth str - Enable/disable MAB re-authentication. Valid values:
disable
,enable
. - mac_
called_ strstation_ delimiter - MAC called station delimiter (default = hyphen). Valid values:
colon
,hyphen
,none
,single-hyphen
. - mac_
calling_ strstation_ delimiter - MAC calling station delimiter (default = hyphen). Valid values:
colon
,hyphen
,none
,single-hyphen
. - mac_
case str - MAC case (default = lowercase). Valid values:
lowercase
,uppercase
. - mac_
password_ strdelimiter - MAC authentication password delimiter (default = hyphen). Valid values:
colon
,hyphen
,none
,single-hyphen
. - mac_
username_ strdelimiter - MAC authentication username delimiter (default = hyphen). Valid values:
colon
,hyphen
,none
,single-hyphen
. - max_
reauth_ intattempt - Maximum number of authentication attempts (0 - 15, default = 3).
- reauth_
period int - Period of time to allow for reauthentication (1 - 1440 sec, default = 60, 0 = disable reauthentication).
- tx_
period int - 802.1X Tx period (seconds, default=30).
- vdomparam str
- Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
- link
Down StringAuth - Interface-reauthentication state to set if a link is down. Valid values:
set-unauth
,no-action
. - mab
Reauth String - Enable/disable MAB re-authentication. Valid values:
disable
,enable
. - mac
Called StringStation Delimiter - MAC called station delimiter (default = hyphen). Valid values:
colon
,hyphen
,none
,single-hyphen
. - mac
Calling StringStation Delimiter - MAC calling station delimiter (default = hyphen). Valid values:
colon
,hyphen
,none
,single-hyphen
. - mac
Case String - MAC case (default = lowercase). Valid values:
lowercase
,uppercase
. - mac
Password StringDelimiter - MAC authentication password delimiter (default = hyphen). Valid values:
colon
,hyphen
,none
,single-hyphen
. - mac
Username StringDelimiter - MAC authentication username delimiter (default = hyphen). Valid values:
colon
,hyphen
,none
,single-hyphen
. - max
Reauth NumberAttempt - Maximum number of authentication attempts (0 - 15, default = 3).
- reauth
Period Number - Period of time to allow for reauthentication (1 - 1440 sec, default = 60, 0 = disable reauthentication).
- tx
Period Number - 802.1X Tx period (seconds, default=30).
- vdomparam String
- Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
Import
SwitchController 8021XSettings can be imported using any of these accepted formats:
$ pulumi import fortios:switchcontroller/settings8021X:Settings8021X labelname SwitchController8021XSettings
If you do not want to import arguments of block:
$ export “FORTIOS_IMPORT_TABLE”=“false”
$ pulumi import fortios:switchcontroller/settings8021X:Settings8021X labelname SwitchController8021XSettings
$ unset “FORTIOS_IMPORT_TABLE”
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- fortios pulumiverse/pulumi-fortios
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
fortios
Terraform Provider.