1. Packages
  2. Fortios
  3. API Docs
  4. wirelesscontroller
  5. Mpskprofile
Fortios v0.0.5 published on Tuesday, Apr 9, 2024 by pulumiverse

fortios.wirelesscontroller.Mpskprofile

Explore with Pulumi AI

fortios logo
Fortios v0.0.5 published on Tuesday, Apr 9, 2024 by pulumiverse

    Configure MPSK profile. Applies to FortiOS Version >= 6.4.2.

    Create Mpskprofile Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new Mpskprofile(name: string, args?: MpskprofileArgs, opts?: CustomResourceOptions);
    @overload
    def Mpskprofile(resource_name: str,
                    args: Optional[MpskprofileArgs] = None,
                    opts: Optional[ResourceOptions] = None)
    
    @overload
    def Mpskprofile(resource_name: str,
                    opts: Optional[ResourceOptions] = None,
                    dynamic_sort_subtable: Optional[str] = None,
                    get_all_tables: Optional[str] = None,
                    mpsk_concurrent_clients: Optional[int] = None,
                    mpsk_groups: Optional[Sequence[MpskprofileMpskGroupArgs]] = None,
                    name: Optional[str] = None,
                    vdomparam: Optional[str] = None)
    func NewMpskprofile(ctx *Context, name string, args *MpskprofileArgs, opts ...ResourceOption) (*Mpskprofile, error)
    public Mpskprofile(string name, MpskprofileArgs? args = null, CustomResourceOptions? opts = null)
    public Mpskprofile(String name, MpskprofileArgs args)
    public Mpskprofile(String name, MpskprofileArgs args, CustomResourceOptions options)
    
    type: fortios:wirelesscontroller:Mpskprofile
    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 MpskprofileArgs
    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 MpskprofileArgs
    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 MpskprofileArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args MpskprofileArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args MpskprofileArgs
    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 mpskprofileResource = new Fortios.Wirelesscontroller.Mpskprofile("mpskprofileResource", new()
    {
        DynamicSortSubtable = "string",
        GetAllTables = "string",
        MpskConcurrentClients = 0,
        MpskGroups = new[]
        {
            new Fortios.Wirelesscontroller.Inputs.MpskprofileMpskGroupArgs
            {
                MpskKeys = new[]
                {
                    new Fortios.Wirelesscontroller.Inputs.MpskprofileMpskGroupMpskKeyArgs
                    {
                        Comment = "string",
                        ConcurrentClientLimitType = "string",
                        ConcurrentClients = 0,
                        Mac = "string",
                        MpskSchedules = new[]
                        {
                            new Fortios.Wirelesscontroller.Inputs.MpskprofileMpskGroupMpskKeyMpskScheduleArgs
                            {
                                Name = "string",
                            },
                        },
                        Name = "string",
                        Passphrase = "string",
                    },
                },
                Name = "string",
                VlanId = 0,
                VlanType = "string",
            },
        },
        Name = "string",
        Vdomparam = "string",
    });
    
    example, err := wirelesscontroller.NewMpskprofile(ctx, "mpskprofileResource", &wirelesscontroller.MpskprofileArgs{
    	DynamicSortSubtable:   pulumi.String("string"),
    	GetAllTables:          pulumi.String("string"),
    	MpskConcurrentClients: pulumi.Int(0),
    	MpskGroups: wirelesscontroller.MpskprofileMpskGroupArray{
    		&wirelesscontroller.MpskprofileMpskGroupArgs{
    			MpskKeys: wirelesscontroller.MpskprofileMpskGroupMpskKeyArray{
    				&wirelesscontroller.MpskprofileMpskGroupMpskKeyArgs{
    					Comment:                   pulumi.String("string"),
    					ConcurrentClientLimitType: pulumi.String("string"),
    					ConcurrentClients:         pulumi.Int(0),
    					Mac:                       pulumi.String("string"),
    					MpskSchedules: wirelesscontroller.MpskprofileMpskGroupMpskKeyMpskScheduleArray{
    						&wirelesscontroller.MpskprofileMpskGroupMpskKeyMpskScheduleArgs{
    							Name: pulumi.String("string"),
    						},
    					},
    					Name:       pulumi.String("string"),
    					Passphrase: pulumi.String("string"),
    				},
    			},
    			Name:     pulumi.String("string"),
    			VlanId:   pulumi.Int(0),
    			VlanType: pulumi.String("string"),
    		},
    	},
    	Name:      pulumi.String("string"),
    	Vdomparam: pulumi.String("string"),
    })
    
    var mpskprofileResource = new Mpskprofile("mpskprofileResource", MpskprofileArgs.builder()
        .dynamicSortSubtable("string")
        .getAllTables("string")
        .mpskConcurrentClients(0)
        .mpskGroups(MpskprofileMpskGroupArgs.builder()
            .mpskKeys(MpskprofileMpskGroupMpskKeyArgs.builder()
                .comment("string")
                .concurrentClientLimitType("string")
                .concurrentClients(0)
                .mac("string")
                .mpskSchedules(MpskprofileMpskGroupMpskKeyMpskScheduleArgs.builder()
                    .name("string")
                    .build())
                .name("string")
                .passphrase("string")
                .build())
            .name("string")
            .vlanId(0)
            .vlanType("string")
            .build())
        .name("string")
        .vdomparam("string")
        .build());
    
    mpskprofile_resource = fortios.wirelesscontroller.Mpskprofile("mpskprofileResource",
        dynamic_sort_subtable="string",
        get_all_tables="string",
        mpsk_concurrent_clients=0,
        mpsk_groups=[fortios.wirelesscontroller.MpskprofileMpskGroupArgs(
            mpsk_keys=[fortios.wirelesscontroller.MpskprofileMpskGroupMpskKeyArgs(
                comment="string",
                concurrent_client_limit_type="string",
                concurrent_clients=0,
                mac="string",
                mpsk_schedules=[fortios.wirelesscontroller.MpskprofileMpskGroupMpskKeyMpskScheduleArgs(
                    name="string",
                )],
                name="string",
                passphrase="string",
            )],
            name="string",
            vlan_id=0,
            vlan_type="string",
        )],
        name="string",
        vdomparam="string")
    
    const mpskprofileResource = new fortios.wirelesscontroller.Mpskprofile("mpskprofileResource", {
        dynamicSortSubtable: "string",
        getAllTables: "string",
        mpskConcurrentClients: 0,
        mpskGroups: [{
            mpskKeys: [{
                comment: "string",
                concurrentClientLimitType: "string",
                concurrentClients: 0,
                mac: "string",
                mpskSchedules: [{
                    name: "string",
                }],
                name: "string",
                passphrase: "string",
            }],
            name: "string",
            vlanId: 0,
            vlanType: "string",
        }],
        name: "string",
        vdomparam: "string",
    });
    
    type: fortios:wirelesscontroller:Mpskprofile
    properties:
        dynamicSortSubtable: string
        getAllTables: string
        mpskConcurrentClients: 0
        mpskGroups:
            - mpskKeys:
                - comment: string
                  concurrentClientLimitType: string
                  concurrentClients: 0
                  mac: string
                  mpskSchedules:
                    - name: string
                  name: string
                  passphrase: string
              name: string
              vlanId: 0
              vlanType: string
        name: string
        vdomparam: string
    

    Mpskprofile 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 Mpskprofile resource accepts the following input properties:

    DynamicSortSubtable string
    Sort sub-tables, please do not set this parameter when configuring static sub-tables. Options: [ false, true, natural, alphabetical ]. false: Default value, do not sort tables; true/natural: sort tables in natural order. For example: [ a10, a2 ] -> [ a2, a10 ]; alphabetical: sort tables in alphabetical order. For example: [ a10, a2 ] -> [ a10, a2 ].
    GetAllTables string
    Get all sub-tables including unconfigured tables. Do not set this variable to true if you configure sub-table in another resource, otherwish conflicts and overwrite will occur. Options: [ false, true ]. false: Default value, do not get unconfigured tables; true: get all tables including unconfigured tables.
    MpskConcurrentClients int
    Maximum number of concurrent clients that connect using the same passphrase in multiple PSK authentication (0 - 65535, default = 0, meaning no limitation).
    MpskGroups List<Pulumiverse.Fortios.Wirelesscontroller.Inputs.MpskprofileMpskGroup>
    List of multiple PSK groups. The structure of mpsk_group block is documented below.
    Name string
    MPSK profile name.
    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.
    DynamicSortSubtable string
    Sort sub-tables, please do not set this parameter when configuring static sub-tables. Options: [ false, true, natural, alphabetical ]. false: Default value, do not sort tables; true/natural: sort tables in natural order. For example: [ a10, a2 ] -> [ a2, a10 ]; alphabetical: sort tables in alphabetical order. For example: [ a10, a2 ] -> [ a10, a2 ].
    GetAllTables string
    Get all sub-tables including unconfigured tables. Do not set this variable to true if you configure sub-table in another resource, otherwish conflicts and overwrite will occur. Options: [ false, true ]. false: Default value, do not get unconfigured tables; true: get all tables including unconfigured tables.
    MpskConcurrentClients int
    Maximum number of concurrent clients that connect using the same passphrase in multiple PSK authentication (0 - 65535, default = 0, meaning no limitation).
    MpskGroups []MpskprofileMpskGroupArgs
    List of multiple PSK groups. The structure of mpsk_group block is documented below.
    Name string
    MPSK profile name.
    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.
    dynamicSortSubtable String
    Sort sub-tables, please do not set this parameter when configuring static sub-tables. Options: [ false, true, natural, alphabetical ]. false: Default value, do not sort tables; true/natural: sort tables in natural order. For example: [ a10, a2 ] -> [ a2, a10 ]; alphabetical: sort tables in alphabetical order. For example: [ a10, a2 ] -> [ a10, a2 ].
    getAllTables String
    Get all sub-tables including unconfigured tables. Do not set this variable to true if you configure sub-table in another resource, otherwish conflicts and overwrite will occur. Options: [ false, true ]. false: Default value, do not get unconfigured tables; true: get all tables including unconfigured tables.
    mpskConcurrentClients Integer
    Maximum number of concurrent clients that connect using the same passphrase in multiple PSK authentication (0 - 65535, default = 0, meaning no limitation).
    mpskGroups List<MpskprofileMpskGroup>
    List of multiple PSK groups. The structure of mpsk_group block is documented below.
    name String
    MPSK profile name.
    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.
    dynamicSortSubtable string
    Sort sub-tables, please do not set this parameter when configuring static sub-tables. Options: [ false, true, natural, alphabetical ]. false: Default value, do not sort tables; true/natural: sort tables in natural order. For example: [ a10, a2 ] -> [ a2, a10 ]; alphabetical: sort tables in alphabetical order. For example: [ a10, a2 ] -> [ a10, a2 ].
    getAllTables string
    Get all sub-tables including unconfigured tables. Do not set this variable to true if you configure sub-table in another resource, otherwish conflicts and overwrite will occur. Options: [ false, true ]. false: Default value, do not get unconfigured tables; true: get all tables including unconfigured tables.
    mpskConcurrentClients number
    Maximum number of concurrent clients that connect using the same passphrase in multiple PSK authentication (0 - 65535, default = 0, meaning no limitation).
    mpskGroups MpskprofileMpskGroup[]
    List of multiple PSK groups. The structure of mpsk_group block is documented below.
    name string
    MPSK profile name.
    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.
    dynamic_sort_subtable str
    Sort sub-tables, please do not set this parameter when configuring static sub-tables. Options: [ false, true, natural, alphabetical ]. false: Default value, do not sort tables; true/natural: sort tables in natural order. For example: [ a10, a2 ] -> [ a2, a10 ]; alphabetical: sort tables in alphabetical order. For example: [ a10, a2 ] -> [ a10, a2 ].
    get_all_tables str
    Get all sub-tables including unconfigured tables. Do not set this variable to true if you configure sub-table in another resource, otherwish conflicts and overwrite will occur. Options: [ false, true ]. false: Default value, do not get unconfigured tables; true: get all tables including unconfigured tables.
    mpsk_concurrent_clients int
    Maximum number of concurrent clients that connect using the same passphrase in multiple PSK authentication (0 - 65535, default = 0, meaning no limitation).
    mpsk_groups Sequence[MpskprofileMpskGroupArgs]
    List of multiple PSK groups. The structure of mpsk_group block is documented below.
    name str
    MPSK profile name.
    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.
    dynamicSortSubtable String
    Sort sub-tables, please do not set this parameter when configuring static sub-tables. Options: [ false, true, natural, alphabetical ]. false: Default value, do not sort tables; true/natural: sort tables in natural order. For example: [ a10, a2 ] -> [ a2, a10 ]; alphabetical: sort tables in alphabetical order. For example: [ a10, a2 ] -> [ a10, a2 ].
    getAllTables String
    Get all sub-tables including unconfigured tables. Do not set this variable to true if you configure sub-table in another resource, otherwish conflicts and overwrite will occur. Options: [ false, true ]. false: Default value, do not get unconfigured tables; true: get all tables including unconfigured tables.
    mpskConcurrentClients Number
    Maximum number of concurrent clients that connect using the same passphrase in multiple PSK authentication (0 - 65535, default = 0, meaning no limitation).
    mpskGroups List<Property Map>
    List of multiple PSK groups. The structure of mpsk_group block is documented below.
    name String
    MPSK profile name.
    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 Mpskprofile 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 Mpskprofile Resource

    Get an existing Mpskprofile 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?: MpskprofileState, opts?: CustomResourceOptions): Mpskprofile
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            dynamic_sort_subtable: Optional[str] = None,
            get_all_tables: Optional[str] = None,
            mpsk_concurrent_clients: Optional[int] = None,
            mpsk_groups: Optional[Sequence[MpskprofileMpskGroupArgs]] = None,
            name: Optional[str] = None,
            vdomparam: Optional[str] = None) -> Mpskprofile
    func GetMpskprofile(ctx *Context, name string, id IDInput, state *MpskprofileState, opts ...ResourceOption) (*Mpskprofile, error)
    public static Mpskprofile Get(string name, Input<string> id, MpskprofileState? state, CustomResourceOptions? opts = null)
    public static Mpskprofile get(String name, Output<String> id, MpskprofileState 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.
    The following state arguments are supported:
    DynamicSortSubtable string
    Sort sub-tables, please do not set this parameter when configuring static sub-tables. Options: [ false, true, natural, alphabetical ]. false: Default value, do not sort tables; true/natural: sort tables in natural order. For example: [ a10, a2 ] -> [ a2, a10 ]; alphabetical: sort tables in alphabetical order. For example: [ a10, a2 ] -> [ a10, a2 ].
    GetAllTables string
    Get all sub-tables including unconfigured tables. Do not set this variable to true if you configure sub-table in another resource, otherwish conflicts and overwrite will occur. Options: [ false, true ]. false: Default value, do not get unconfigured tables; true: get all tables including unconfigured tables.
    MpskConcurrentClients int
    Maximum number of concurrent clients that connect using the same passphrase in multiple PSK authentication (0 - 65535, default = 0, meaning no limitation).
    MpskGroups List<Pulumiverse.Fortios.Wirelesscontroller.Inputs.MpskprofileMpskGroup>
    List of multiple PSK groups. The structure of mpsk_group block is documented below.
    Name string
    MPSK profile name.
    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.
    DynamicSortSubtable string
    Sort sub-tables, please do not set this parameter when configuring static sub-tables. Options: [ false, true, natural, alphabetical ]. false: Default value, do not sort tables; true/natural: sort tables in natural order. For example: [ a10, a2 ] -> [ a2, a10 ]; alphabetical: sort tables in alphabetical order. For example: [ a10, a2 ] -> [ a10, a2 ].
    GetAllTables string
    Get all sub-tables including unconfigured tables. Do not set this variable to true if you configure sub-table in another resource, otherwish conflicts and overwrite will occur. Options: [ false, true ]. false: Default value, do not get unconfigured tables; true: get all tables including unconfigured tables.
    MpskConcurrentClients int
    Maximum number of concurrent clients that connect using the same passphrase in multiple PSK authentication (0 - 65535, default = 0, meaning no limitation).
    MpskGroups []MpskprofileMpskGroupArgs
    List of multiple PSK groups. The structure of mpsk_group block is documented below.
    Name string
    MPSK profile name.
    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.
    dynamicSortSubtable String
    Sort sub-tables, please do not set this parameter when configuring static sub-tables. Options: [ false, true, natural, alphabetical ]. false: Default value, do not sort tables; true/natural: sort tables in natural order. For example: [ a10, a2 ] -> [ a2, a10 ]; alphabetical: sort tables in alphabetical order. For example: [ a10, a2 ] -> [ a10, a2 ].
    getAllTables String
    Get all sub-tables including unconfigured tables. Do not set this variable to true if you configure sub-table in another resource, otherwish conflicts and overwrite will occur. Options: [ false, true ]. false: Default value, do not get unconfigured tables; true: get all tables including unconfigured tables.
    mpskConcurrentClients Integer
    Maximum number of concurrent clients that connect using the same passphrase in multiple PSK authentication (0 - 65535, default = 0, meaning no limitation).
    mpskGroups List<MpskprofileMpskGroup>
    List of multiple PSK groups. The structure of mpsk_group block is documented below.
    name String
    MPSK profile name.
    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.
    dynamicSortSubtable string
    Sort sub-tables, please do not set this parameter when configuring static sub-tables. Options: [ false, true, natural, alphabetical ]. false: Default value, do not sort tables; true/natural: sort tables in natural order. For example: [ a10, a2 ] -> [ a2, a10 ]; alphabetical: sort tables in alphabetical order. For example: [ a10, a2 ] -> [ a10, a2 ].
    getAllTables string
    Get all sub-tables including unconfigured tables. Do not set this variable to true if you configure sub-table in another resource, otherwish conflicts and overwrite will occur. Options: [ false, true ]. false: Default value, do not get unconfigured tables; true: get all tables including unconfigured tables.
    mpskConcurrentClients number
    Maximum number of concurrent clients that connect using the same passphrase in multiple PSK authentication (0 - 65535, default = 0, meaning no limitation).
    mpskGroups MpskprofileMpskGroup[]
    List of multiple PSK groups. The structure of mpsk_group block is documented below.
    name string
    MPSK profile name.
    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.
    dynamic_sort_subtable str
    Sort sub-tables, please do not set this parameter when configuring static sub-tables. Options: [ false, true, natural, alphabetical ]. false: Default value, do not sort tables; true/natural: sort tables in natural order. For example: [ a10, a2 ] -> [ a2, a10 ]; alphabetical: sort tables in alphabetical order. For example: [ a10, a2 ] -> [ a10, a2 ].
    get_all_tables str
    Get all sub-tables including unconfigured tables. Do not set this variable to true if you configure sub-table in another resource, otherwish conflicts and overwrite will occur. Options: [ false, true ]. false: Default value, do not get unconfigured tables; true: get all tables including unconfigured tables.
    mpsk_concurrent_clients int
    Maximum number of concurrent clients that connect using the same passphrase in multiple PSK authentication (0 - 65535, default = 0, meaning no limitation).
    mpsk_groups Sequence[MpskprofileMpskGroupArgs]
    List of multiple PSK groups. The structure of mpsk_group block is documented below.
    name str
    MPSK profile name.
    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.
    dynamicSortSubtable String
    Sort sub-tables, please do not set this parameter when configuring static sub-tables. Options: [ false, true, natural, alphabetical ]. false: Default value, do not sort tables; true/natural: sort tables in natural order. For example: [ a10, a2 ] -> [ a2, a10 ]; alphabetical: sort tables in alphabetical order. For example: [ a10, a2 ] -> [ a10, a2 ].
    getAllTables String
    Get all sub-tables including unconfigured tables. Do not set this variable to true if you configure sub-table in another resource, otherwish conflicts and overwrite will occur. Options: [ false, true ]. false: Default value, do not get unconfigured tables; true: get all tables including unconfigured tables.
    mpskConcurrentClients Number
    Maximum number of concurrent clients that connect using the same passphrase in multiple PSK authentication (0 - 65535, default = 0, meaning no limitation).
    mpskGroups List<Property Map>
    List of multiple PSK groups. The structure of mpsk_group block is documented below.
    name String
    MPSK profile name.
    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.

    Supporting Types

    MpskprofileMpskGroup, MpskprofileMpskGroupArgs

    MpskKeys List<Pulumiverse.Fortios.Wirelesscontroller.Inputs.MpskprofileMpskGroupMpskKey>
    List of multiple PSK entries. The structure of mpsk_key block is documented below.
    Name string
    MPSK group name.
    VlanId int
    Optional VLAN ID.
    VlanType string
    MPSK group VLAN options. Valid values: no-vlan, fixed-vlan.
    MpskKeys []MpskprofileMpskGroupMpskKey
    List of multiple PSK entries. The structure of mpsk_key block is documented below.
    Name string
    MPSK group name.
    VlanId int
    Optional VLAN ID.
    VlanType string
    MPSK group VLAN options. Valid values: no-vlan, fixed-vlan.
    mpskKeys List<MpskprofileMpskGroupMpskKey>
    List of multiple PSK entries. The structure of mpsk_key block is documented below.
    name String
    MPSK group name.
    vlanId Integer
    Optional VLAN ID.
    vlanType String
    MPSK group VLAN options. Valid values: no-vlan, fixed-vlan.
    mpskKeys MpskprofileMpskGroupMpskKey[]
    List of multiple PSK entries. The structure of mpsk_key block is documented below.
    name string
    MPSK group name.
    vlanId number
    Optional VLAN ID.
    vlanType string
    MPSK group VLAN options. Valid values: no-vlan, fixed-vlan.
    mpsk_keys Sequence[MpskprofileMpskGroupMpskKey]
    List of multiple PSK entries. The structure of mpsk_key block is documented below.
    name str
    MPSK group name.
    vlan_id int
    Optional VLAN ID.
    vlan_type str
    MPSK group VLAN options. Valid values: no-vlan, fixed-vlan.
    mpskKeys List<Property Map>
    List of multiple PSK entries. The structure of mpsk_key block is documented below.
    name String
    MPSK group name.
    vlanId Number
    Optional VLAN ID.
    vlanType String
    MPSK group VLAN options. Valid values: no-vlan, fixed-vlan.

    MpskprofileMpskGroupMpskKey, MpskprofileMpskGroupMpskKeyArgs

    Comment string
    Comment.
    ConcurrentClientLimitType string
    MPSK client limit type options. Valid values: default, unlimited, specified.
    ConcurrentClients int
    Number of clients that can connect using this pre-shared key (1 - 65535, default is 256).
    Mac string
    MAC address.
    MpskSchedules List<Pulumiverse.Fortios.Wirelesscontroller.Inputs.MpskprofileMpskGroupMpskKeyMpskSchedule>
    Firewall schedule for MPSK passphrase. The passphrase will be effective only when at least one schedule is valid. The structure of mpsk_schedules block is documented below.
    Name string
    Pre-shared key name.
    Passphrase string
    WPA Pre-shared key.
    Comment string
    Comment.
    ConcurrentClientLimitType string
    MPSK client limit type options. Valid values: default, unlimited, specified.
    ConcurrentClients int
    Number of clients that can connect using this pre-shared key (1 - 65535, default is 256).
    Mac string
    MAC address.
    MpskSchedules []MpskprofileMpskGroupMpskKeyMpskSchedule
    Firewall schedule for MPSK passphrase. The passphrase will be effective only when at least one schedule is valid. The structure of mpsk_schedules block is documented below.
    Name string
    Pre-shared key name.
    Passphrase string
    WPA Pre-shared key.
    comment String
    Comment.
    concurrentClientLimitType String
    MPSK client limit type options. Valid values: default, unlimited, specified.
    concurrentClients Integer
    Number of clients that can connect using this pre-shared key (1 - 65535, default is 256).
    mac String
    MAC address.
    mpskSchedules List<MpskprofileMpskGroupMpskKeyMpskSchedule>
    Firewall schedule for MPSK passphrase. The passphrase will be effective only when at least one schedule is valid. The structure of mpsk_schedules block is documented below.
    name String
    Pre-shared key name.
    passphrase String
    WPA Pre-shared key.
    comment string
    Comment.
    concurrentClientLimitType string
    MPSK client limit type options. Valid values: default, unlimited, specified.
    concurrentClients number
    Number of clients that can connect using this pre-shared key (1 - 65535, default is 256).
    mac string
    MAC address.
    mpskSchedules MpskprofileMpskGroupMpskKeyMpskSchedule[]
    Firewall schedule for MPSK passphrase. The passphrase will be effective only when at least one schedule is valid. The structure of mpsk_schedules block is documented below.
    name string
    Pre-shared key name.
    passphrase string
    WPA Pre-shared key.
    comment str
    Comment.
    concurrent_client_limit_type str
    MPSK client limit type options. Valid values: default, unlimited, specified.
    concurrent_clients int
    Number of clients that can connect using this pre-shared key (1 - 65535, default is 256).
    mac str
    MAC address.
    mpsk_schedules Sequence[MpskprofileMpskGroupMpskKeyMpskSchedule]
    Firewall schedule for MPSK passphrase. The passphrase will be effective only when at least one schedule is valid. The structure of mpsk_schedules block is documented below.
    name str
    Pre-shared key name.
    passphrase str
    WPA Pre-shared key.
    comment String
    Comment.
    concurrentClientLimitType String
    MPSK client limit type options. Valid values: default, unlimited, specified.
    concurrentClients Number
    Number of clients that can connect using this pre-shared key (1 - 65535, default is 256).
    mac String
    MAC address.
    mpskSchedules List<Property Map>
    Firewall schedule for MPSK passphrase. The passphrase will be effective only when at least one schedule is valid. The structure of mpsk_schedules block is documented below.
    name String
    Pre-shared key name.
    passphrase String
    WPA Pre-shared key.

    MpskprofileMpskGroupMpskKeyMpskSchedule, MpskprofileMpskGroupMpskKeyMpskScheduleArgs

    Name string
    Schedule name.
    Name string
    Schedule name.
    name String
    Schedule name.
    name string
    Schedule name.
    name str
    Schedule name.
    name String
    Schedule name.

    Import

    WirelessController MpskProfile can be imported using any of these accepted formats:

    $ pulumi import fortios:wirelesscontroller/mpskprofile:Mpskprofile labelname {{name}}
    

    If you do not want to import arguments of block:

    $ export “FORTIOS_IMPORT_TABLE”=“false”

    $ pulumi import fortios:wirelesscontroller/mpskprofile:Mpskprofile labelname {{name}}
    

    $ 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.
    fortios logo
    Fortios v0.0.5 published on Tuesday, Apr 9, 2024 by pulumiverse