1. Packages
  2. Fortimanager Provider
  3. API Docs
  4. ObjectWirelesscontrollerMpskprofileMpskgroup
fortimanager 1.13.0 published on Thursday, Mar 13, 2025 by fortinetdev

fortimanager.ObjectWirelesscontrollerMpskprofileMpskgroup

Explore with Pulumi AI

fortimanager logo
fortimanager 1.13.0 published on Thursday, Mar 13, 2025 by fortinetdev

    List of multiple PSK groups.

    This resource is a sub resource for variable mpsk_group of resource fortimanager.ObjectWirelesscontrollerMpskprofile. Conflict and overwrite may occur if use both of them. The following variables have sub resource. Avoid using them together, otherwise conflicts and overwrites may occur.

    • mpsk_key: fortimanager.ObjectWirelesscontrollerMpskprofileMpskgroupMpskkey

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as fortimanager from "@pulumi/fortimanager";
    
    const trnameObjectWirelesscontrollerMpskprofile = new fortimanager.ObjectWirelesscontrollerMpskprofile("trnameObjectWirelesscontrollerMpskprofile", {});
    const trnameObjectWirelesscontrollerMpskprofileMpskgroup = new fortimanager.ObjectWirelesscontrollerMpskprofileMpskgroup("trnameObjectWirelesscontrollerMpskprofileMpskgroup", {
        vlanId: 1300,
        vlanType: "no-vlan",
        mpskProfile: trnameObjectWirelesscontrollerMpskprofile.name,
    }, {
        dependsOn: [trnameObjectWirelesscontrollerMpskprofile],
    });
    
    import pulumi
    import pulumi_fortimanager as fortimanager
    
    trname_object_wirelesscontroller_mpskprofile = fortimanager.ObjectWirelesscontrollerMpskprofile("trnameObjectWirelesscontrollerMpskprofile")
    trname_object_wirelesscontroller_mpskprofile_mpskgroup = fortimanager.ObjectWirelesscontrollerMpskprofileMpskgroup("trnameObjectWirelesscontrollerMpskprofileMpskgroup",
        vlan_id=1300,
        vlan_type="no-vlan",
        mpsk_profile=trname_object_wirelesscontroller_mpskprofile.name,
        opts = pulumi.ResourceOptions(depends_on=[trname_object_wirelesscontroller_mpskprofile]))
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-terraform-provider/sdks/go/fortimanager/fortimanager"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		trnameObjectWirelesscontrollerMpskprofile, err := fortimanager.NewObjectWirelesscontrollerMpskprofile(ctx, "trnameObjectWirelesscontrollerMpskprofile", nil)
    		if err != nil {
    			return err
    		}
    		_, err = fortimanager.NewObjectWirelesscontrollerMpskprofileMpskgroup(ctx, "trnameObjectWirelesscontrollerMpskprofileMpskgroup", &fortimanager.ObjectWirelesscontrollerMpskprofileMpskgroupArgs{
    			VlanId:      pulumi.Float64(1300),
    			VlanType:    pulumi.String("no-vlan"),
    			MpskProfile: trnameObjectWirelesscontrollerMpskprofile.Name,
    		}, pulumi.DependsOn([]pulumi.Resource{
    			trnameObjectWirelesscontrollerMpskprofile,
    		}))
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Fortimanager = Pulumi.Fortimanager;
    
    return await Deployment.RunAsync(() => 
    {
        var trnameObjectWirelesscontrollerMpskprofile = new Fortimanager.ObjectWirelesscontrollerMpskprofile("trnameObjectWirelesscontrollerMpskprofile");
    
        var trnameObjectWirelesscontrollerMpskprofileMpskgroup = new Fortimanager.ObjectWirelesscontrollerMpskprofileMpskgroup("trnameObjectWirelesscontrollerMpskprofileMpskgroup", new()
        {
            VlanId = 1300,
            VlanType = "no-vlan",
            MpskProfile = trnameObjectWirelesscontrollerMpskprofile.Name,
        }, new CustomResourceOptions
        {
            DependsOn =
            {
                trnameObjectWirelesscontrollerMpskprofile,
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.fortimanager.ObjectWirelesscontrollerMpskprofile;
    import com.pulumi.fortimanager.ObjectWirelesscontrollerMpskprofileMpskgroup;
    import com.pulumi.fortimanager.ObjectWirelesscontrollerMpskprofileMpskgroupArgs;
    import com.pulumi.resources.CustomResourceOptions;
    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 trnameObjectWirelesscontrollerMpskprofile = new ObjectWirelesscontrollerMpskprofile("trnameObjectWirelesscontrollerMpskprofile");
    
            var trnameObjectWirelesscontrollerMpskprofileMpskgroup = new ObjectWirelesscontrollerMpskprofileMpskgroup("trnameObjectWirelesscontrollerMpskprofileMpskgroup", ObjectWirelesscontrollerMpskprofileMpskgroupArgs.builder()
                .vlanId(1300)
                .vlanType("no-vlan")
                .mpskProfile(trnameObjectWirelesscontrollerMpskprofile.name())
                .build(), CustomResourceOptions.builder()
                    .dependsOn(trnameObjectWirelesscontrollerMpskprofile)
                    .build());
    
        }
    }
    
    resources:
      trnameObjectWirelesscontrollerMpskprofileMpskgroup:
        type: fortimanager:ObjectWirelesscontrollerMpskprofileMpskgroup
        properties:
          vlanId: 1300
          vlanType: no-vlan
          mpskProfile: ${trnameObjectWirelesscontrollerMpskprofile.name}
        options:
          dependsOn:
            - ${trnameObjectWirelesscontrollerMpskprofile}
      trnameObjectWirelesscontrollerMpskprofile:
        type: fortimanager:ObjectWirelesscontrollerMpskprofile
    

    Create ObjectWirelesscontrollerMpskprofileMpskgroup Resource

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

    Constructor syntax

    new ObjectWirelesscontrollerMpskprofileMpskgroup(name: string, args: ObjectWirelesscontrollerMpskprofileMpskgroupArgs, opts?: CustomResourceOptions);
    @overload
    def ObjectWirelesscontrollerMpskprofileMpskgroup(resource_name: str,
                                                     args: ObjectWirelesscontrollerMpskprofileMpskgroupArgs,
                                                     opts: Optional[ResourceOptions] = None)
    
    @overload
    def ObjectWirelesscontrollerMpskprofileMpskgroup(resource_name: str,
                                                     opts: Optional[ResourceOptions] = None,
                                                     mpsk_profile: Optional[str] = None,
                                                     adom: Optional[str] = None,
                                                     dynamic_sort_subtable: Optional[str] = None,
                                                     mpsk_keys: Optional[Sequence[ObjectWirelesscontrollerMpskprofileMpskgroupMpskKeyArgs]] = None,
                                                     name: Optional[str] = None,
                                                     object_wirelesscontroller_mpskprofile_mpskgroup_id: Optional[str] = None,
                                                     scopetype: Optional[str] = None,
                                                     vlan_id: Optional[float] = None,
                                                     vlan_type: Optional[str] = None)
    func NewObjectWirelesscontrollerMpskprofileMpskgroup(ctx *Context, name string, args ObjectWirelesscontrollerMpskprofileMpskgroupArgs, opts ...ResourceOption) (*ObjectWirelesscontrollerMpskprofileMpskgroup, error)
    public ObjectWirelesscontrollerMpskprofileMpskgroup(string name, ObjectWirelesscontrollerMpskprofileMpskgroupArgs args, CustomResourceOptions? opts = null)
    public ObjectWirelesscontrollerMpskprofileMpskgroup(String name, ObjectWirelesscontrollerMpskprofileMpskgroupArgs args)
    public ObjectWirelesscontrollerMpskprofileMpskgroup(String name, ObjectWirelesscontrollerMpskprofileMpskgroupArgs args, CustomResourceOptions options)
    
    type: fortimanager:ObjectWirelesscontrollerMpskprofileMpskgroup
    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 ObjectWirelesscontrollerMpskprofileMpskgroupArgs
    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 ObjectWirelesscontrollerMpskprofileMpskgroupArgs
    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 ObjectWirelesscontrollerMpskprofileMpskgroupArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args ObjectWirelesscontrollerMpskprofileMpskgroupArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args ObjectWirelesscontrollerMpskprofileMpskgroupArgs
    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 objectWirelesscontrollerMpskprofileMpskgroupResource = new Fortimanager.ObjectWirelesscontrollerMpskprofileMpskgroup("objectWirelesscontrollerMpskprofileMpskgroupResource", new()
    {
        MpskProfile = "string",
        Adom = "string",
        DynamicSortSubtable = "string",
        MpskKeys = new[]
        {
            new Fortimanager.Inputs.ObjectWirelesscontrollerMpskprofileMpskgroupMpskKeyArgs
            {
                Comment = "string",
                ConcurrentClientLimitType = "string",
                ConcurrentClients = 0,
                Mac = "string",
                MpskSchedules = "string",
                Name = "string",
                Passphrases = new[]
                {
                    "string",
                },
                Pmks = new[]
                {
                    "string",
                },
            },
        },
        Name = "string",
        ObjectWirelesscontrollerMpskprofileMpskgroupId = "string",
        Scopetype = "string",
        VlanId = 0,
        VlanType = "string",
    });
    
    example, err := fortimanager.NewObjectWirelesscontrollerMpskprofileMpskgroup(ctx, "objectWirelesscontrollerMpskprofileMpskgroupResource", &fortimanager.ObjectWirelesscontrollerMpskprofileMpskgroupArgs{
    MpskProfile: pulumi.String("string"),
    Adom: pulumi.String("string"),
    DynamicSortSubtable: pulumi.String("string"),
    MpskKeys: .ObjectWirelesscontrollerMpskprofileMpskgroupMpskKeyTypeArray{
    &.ObjectWirelesscontrollerMpskprofileMpskgroupMpskKeyTypeArgs{
    Comment: pulumi.String("string"),
    ConcurrentClientLimitType: pulumi.String("string"),
    ConcurrentClients: pulumi.Float64(0),
    Mac: pulumi.String("string"),
    MpskSchedules: pulumi.String("string"),
    Name: pulumi.String("string"),
    Passphrases: pulumi.StringArray{
    pulumi.String("string"),
    },
    Pmks: pulumi.StringArray{
    pulumi.String("string"),
    },
    },
    },
    Name: pulumi.String("string"),
    ObjectWirelesscontrollerMpskprofileMpskgroupId: pulumi.String("string"),
    Scopetype: pulumi.String("string"),
    VlanId: pulumi.Float64(0),
    VlanType: pulumi.String("string"),
    })
    
    var objectWirelesscontrollerMpskprofileMpskgroupResource = new ObjectWirelesscontrollerMpskprofileMpskgroup("objectWirelesscontrollerMpskprofileMpskgroupResource", ObjectWirelesscontrollerMpskprofileMpskgroupArgs.builder()
        .mpskProfile("string")
        .adom("string")
        .dynamicSortSubtable("string")
        .mpskKeys(ObjectWirelesscontrollerMpskprofileMpskgroupMpskKeyArgs.builder()
            .comment("string")
            .concurrentClientLimitType("string")
            .concurrentClients(0)
            .mac("string")
            .mpskSchedules("string")
            .name("string")
            .passphrases("string")
            .pmks("string")
            .build())
        .name("string")
        .objectWirelesscontrollerMpskprofileMpskgroupId("string")
        .scopetype("string")
        .vlanId(0)
        .vlanType("string")
        .build());
    
    object_wirelesscontroller_mpskprofile_mpskgroup_resource = fortimanager.ObjectWirelesscontrollerMpskprofileMpskgroup("objectWirelesscontrollerMpskprofileMpskgroupResource",
        mpsk_profile="string",
        adom="string",
        dynamic_sort_subtable="string",
        mpsk_keys=[{
            "comment": "string",
            "concurrent_client_limit_type": "string",
            "concurrent_clients": 0,
            "mac": "string",
            "mpsk_schedules": "string",
            "name": "string",
            "passphrases": ["string"],
            "pmks": ["string"],
        }],
        name="string",
        object_wirelesscontroller_mpskprofile_mpskgroup_id="string",
        scopetype="string",
        vlan_id=0,
        vlan_type="string")
    
    const objectWirelesscontrollerMpskprofileMpskgroupResource = new fortimanager.ObjectWirelesscontrollerMpskprofileMpskgroup("objectWirelesscontrollerMpskprofileMpskgroupResource", {
        mpskProfile: "string",
        adom: "string",
        dynamicSortSubtable: "string",
        mpskKeys: [{
            comment: "string",
            concurrentClientLimitType: "string",
            concurrentClients: 0,
            mac: "string",
            mpskSchedules: "string",
            name: "string",
            passphrases: ["string"],
            pmks: ["string"],
        }],
        name: "string",
        objectWirelesscontrollerMpskprofileMpskgroupId: "string",
        scopetype: "string",
        vlanId: 0,
        vlanType: "string",
    });
    
    type: fortimanager:ObjectWirelesscontrollerMpskprofileMpskgroup
    properties:
        adom: string
        dynamicSortSubtable: string
        mpskKeys:
            - comment: string
              concurrentClientLimitType: string
              concurrentClients: 0
              mac: string
              mpskSchedules: string
              name: string
              passphrases:
                - string
              pmks:
                - string
        mpskProfile: string
        name: string
        objectWirelesscontrollerMpskprofileMpskgroupId: string
        scopetype: string
        vlanId: 0
        vlanType: string
    

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

    MpskProfile string
    Mpsk Profile.
    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    DynamicSortSubtable string
    true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
    MpskKeys List<ObjectWirelesscontrollerMpskprofileMpskgroupMpskKey>
    Mpsk-Key. The structure of mpsk_key block is documented below.
    Name string
    MPSK group name.
    ObjectWirelesscontrollerMpskprofileMpskgroupId string
    an identifier for the resource with format {{name}}.
    Scopetype string
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    VlanId double
    Optional VLAN ID.
    VlanType string
    MPSK group VLAN options. Valid values: no-vlan, fixed-vlan.
    MpskProfile string
    Mpsk Profile.
    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    DynamicSortSubtable string
    true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
    MpskKeys []ObjectWirelesscontrollerMpskprofileMpskgroupMpskKeyTypeArgs
    Mpsk-Key. The structure of mpsk_key block is documented below.
    Name string
    MPSK group name.
    ObjectWirelesscontrollerMpskprofileMpskgroupId string
    an identifier for the resource with format {{name}}.
    Scopetype string
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    VlanId float64
    Optional VLAN ID.
    VlanType string
    MPSK group VLAN options. Valid values: no-vlan, fixed-vlan.
    mpskProfile String
    Mpsk Profile.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    dynamicSortSubtable String
    true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
    mpskKeys List<ObjectWirelesscontrollerMpskprofileMpskgroupMpskKey>
    Mpsk-Key. The structure of mpsk_key block is documented below.
    name String
    MPSK group name.
    objectWirelesscontrollerMpskprofileMpskgroupId String
    an identifier for the resource with format {{name}}.
    scopetype String
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    vlanId Double
    Optional VLAN ID.
    vlanType String
    MPSK group VLAN options. Valid values: no-vlan, fixed-vlan.
    mpskProfile string
    Mpsk Profile.
    adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    dynamicSortSubtable string
    true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
    mpskKeys ObjectWirelesscontrollerMpskprofileMpskgroupMpskKey[]
    Mpsk-Key. The structure of mpsk_key block is documented below.
    name string
    MPSK group name.
    objectWirelesscontrollerMpskprofileMpskgroupId string
    an identifier for the resource with format {{name}}.
    scopetype string
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    vlanId number
    Optional VLAN ID.
    vlanType string
    MPSK group VLAN options. Valid values: no-vlan, fixed-vlan.
    mpsk_profile str
    Mpsk Profile.
    adom str
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    dynamic_sort_subtable str
    true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
    mpsk_keys Sequence[ObjectWirelesscontrollerMpskprofileMpskgroupMpskKeyArgs]
    Mpsk-Key. The structure of mpsk_key block is documented below.
    name str
    MPSK group name.
    object_wirelesscontroller_mpskprofile_mpskgroup_id str
    an identifier for the resource with format {{name}}.
    scopetype str
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    vlan_id float
    Optional VLAN ID.
    vlan_type str
    MPSK group VLAN options. Valid values: no-vlan, fixed-vlan.
    mpskProfile String
    Mpsk Profile.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    dynamicSortSubtable String
    true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
    mpskKeys List<Property Map>
    Mpsk-Key. The structure of mpsk_key block is documented below.
    name String
    MPSK group name.
    objectWirelesscontrollerMpskprofileMpskgroupId String
    an identifier for the resource with format {{name}}.
    scopetype String
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    vlanId Number
    Optional VLAN ID.
    vlanType String
    MPSK group VLAN options. Valid values: no-vlan, fixed-vlan.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the ObjectWirelesscontrollerMpskprofileMpskgroup 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 ObjectWirelesscontrollerMpskprofileMpskgroup Resource

    Get an existing ObjectWirelesscontrollerMpskprofileMpskgroup 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?: ObjectWirelesscontrollerMpskprofileMpskgroupState, opts?: CustomResourceOptions): ObjectWirelesscontrollerMpskprofileMpskgroup
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            adom: Optional[str] = None,
            dynamic_sort_subtable: Optional[str] = None,
            mpsk_keys: Optional[Sequence[ObjectWirelesscontrollerMpskprofileMpskgroupMpskKeyArgs]] = None,
            mpsk_profile: Optional[str] = None,
            name: Optional[str] = None,
            object_wirelesscontroller_mpskprofile_mpskgroup_id: Optional[str] = None,
            scopetype: Optional[str] = None,
            vlan_id: Optional[float] = None,
            vlan_type: Optional[str] = None) -> ObjectWirelesscontrollerMpskprofileMpskgroup
    func GetObjectWirelesscontrollerMpskprofileMpskgroup(ctx *Context, name string, id IDInput, state *ObjectWirelesscontrollerMpskprofileMpskgroupState, opts ...ResourceOption) (*ObjectWirelesscontrollerMpskprofileMpskgroup, error)
    public static ObjectWirelesscontrollerMpskprofileMpskgroup Get(string name, Input<string> id, ObjectWirelesscontrollerMpskprofileMpskgroupState? state, CustomResourceOptions? opts = null)
    public static ObjectWirelesscontrollerMpskprofileMpskgroup get(String name, Output<String> id, ObjectWirelesscontrollerMpskprofileMpskgroupState state, CustomResourceOptions options)
    resources:  _:    type: fortimanager:ObjectWirelesscontrollerMpskprofileMpskgroup    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.
    The following state arguments are supported:
    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    DynamicSortSubtable string
    true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
    MpskKeys List<ObjectWirelesscontrollerMpskprofileMpskgroupMpskKey>
    Mpsk-Key. The structure of mpsk_key block is documented below.
    MpskProfile string
    Mpsk Profile.
    Name string
    MPSK group name.
    ObjectWirelesscontrollerMpskprofileMpskgroupId string
    an identifier for the resource with format {{name}}.
    Scopetype string
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    VlanId double
    Optional VLAN ID.
    VlanType string
    MPSK group VLAN options. Valid values: no-vlan, fixed-vlan.
    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    DynamicSortSubtable string
    true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
    MpskKeys []ObjectWirelesscontrollerMpskprofileMpskgroupMpskKeyTypeArgs
    Mpsk-Key. The structure of mpsk_key block is documented below.
    MpskProfile string
    Mpsk Profile.
    Name string
    MPSK group name.
    ObjectWirelesscontrollerMpskprofileMpskgroupId string
    an identifier for the resource with format {{name}}.
    Scopetype string
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    VlanId float64
    Optional VLAN ID.
    VlanType string
    MPSK group VLAN options. Valid values: no-vlan, fixed-vlan.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    dynamicSortSubtable String
    true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
    mpskKeys List<ObjectWirelesscontrollerMpskprofileMpskgroupMpskKey>
    Mpsk-Key. The structure of mpsk_key block is documented below.
    mpskProfile String
    Mpsk Profile.
    name String
    MPSK group name.
    objectWirelesscontrollerMpskprofileMpskgroupId String
    an identifier for the resource with format {{name}}.
    scopetype String
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    vlanId Double
    Optional VLAN ID.
    vlanType String
    MPSK group VLAN options. Valid values: no-vlan, fixed-vlan.
    adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    dynamicSortSubtable string
    true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
    mpskKeys ObjectWirelesscontrollerMpskprofileMpskgroupMpskKey[]
    Mpsk-Key. The structure of mpsk_key block is documented below.
    mpskProfile string
    Mpsk Profile.
    name string
    MPSK group name.
    objectWirelesscontrollerMpskprofileMpskgroupId string
    an identifier for the resource with format {{name}}.
    scopetype string
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    vlanId number
    Optional VLAN ID.
    vlanType string
    MPSK group VLAN options. Valid values: no-vlan, fixed-vlan.
    adom str
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    dynamic_sort_subtable str
    true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
    mpsk_keys Sequence[ObjectWirelesscontrollerMpskprofileMpskgroupMpskKeyArgs]
    Mpsk-Key. The structure of mpsk_key block is documented below.
    mpsk_profile str
    Mpsk Profile.
    name str
    MPSK group name.
    object_wirelesscontroller_mpskprofile_mpskgroup_id str
    an identifier for the resource with format {{name}}.
    scopetype str
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    vlan_id float
    Optional VLAN ID.
    vlan_type str
    MPSK group VLAN options. Valid values: no-vlan, fixed-vlan.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    dynamicSortSubtable String
    true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
    mpskKeys List<Property Map>
    Mpsk-Key. The structure of mpsk_key block is documented below.
    mpskProfile String
    Mpsk Profile.
    name String
    MPSK group name.
    objectWirelesscontrollerMpskprofileMpskgroupId String
    an identifier for the resource with format {{name}}.
    scopetype String
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    vlanId Number
    Optional VLAN ID.
    vlanType String
    MPSK group VLAN options. Valid values: no-vlan, fixed-vlan.

    Supporting Types

    ObjectWirelesscontrollerMpskprofileMpskgroupMpskKey, ObjectWirelesscontrollerMpskprofileMpskgroupMpskKeyArgs

    Comment string
    Comment.
    ConcurrentClientLimitType string
    MPSK client limit type options. Valid values: default, unlimited, specified.
    ConcurrentClients double
    Number of clients that can connect using this pre-shared key (1 - 65535, default is 256).
    Mac string
    MAC address.
    MpskSchedules string
    Firewall schedule for MPSK passphrase. The passphrase will be effective only when at least one schedule is valid.
    Name string
    Pre-shared key name.
    Passphrases List<string>
    WPA Pre-shared key.
    Pmks List<string>
    WPA PMK.
    Comment string
    Comment.
    ConcurrentClientLimitType string
    MPSK client limit type options. Valid values: default, unlimited, specified.
    ConcurrentClients float64
    Number of clients that can connect using this pre-shared key (1 - 65535, default is 256).
    Mac string
    MAC address.
    MpskSchedules string
    Firewall schedule for MPSK passphrase. The passphrase will be effective only when at least one schedule is valid.
    Name string
    Pre-shared key name.
    Passphrases []string
    WPA Pre-shared key.
    Pmks []string
    WPA PMK.
    comment String
    Comment.
    concurrentClientLimitType String
    MPSK client limit type options. Valid values: default, unlimited, specified.
    concurrentClients Double
    Number of clients that can connect using this pre-shared key (1 - 65535, default is 256).
    mac String
    MAC address.
    mpskSchedules String
    Firewall schedule for MPSK passphrase. The passphrase will be effective only when at least one schedule is valid.
    name String
    Pre-shared key name.
    passphrases List<String>
    WPA Pre-shared key.
    pmks List<String>
    WPA PMK.
    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 string
    Firewall schedule for MPSK passphrase. The passphrase will be effective only when at least one schedule is valid.
    name string
    Pre-shared key name.
    passphrases string[]
    WPA Pre-shared key.
    pmks string[]
    WPA PMK.
    comment str
    Comment.
    concurrent_client_limit_type str
    MPSK client limit type options. Valid values: default, unlimited, specified.
    concurrent_clients float
    Number of clients that can connect using this pre-shared key (1 - 65535, default is 256).
    mac str
    MAC address.
    mpsk_schedules str
    Firewall schedule for MPSK passphrase. The passphrase will be effective only when at least one schedule is valid.
    name str
    Pre-shared key name.
    passphrases Sequence[str]
    WPA Pre-shared key.
    pmks Sequence[str]
    WPA PMK.
    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 String
    Firewall schedule for MPSK passphrase. The passphrase will be effective only when at least one schedule is valid.
    name String
    Pre-shared key name.
    passphrases List<String>
    WPA Pre-shared key.
    pmks List<String>
    WPA PMK.

    Import

    ObjectWirelessController MpskProfileMpskGroup can be imported using any of these accepted formats:

    Set import_options = [“mpsk_profile=YOUR_VALUE”] in the provider section.

    $ export “FORTIMANAGER_IMPORT_TABLE”=“true”

    $ pulumi import fortimanager:index/objectWirelesscontrollerMpskprofileMpskgroup:ObjectWirelesscontrollerMpskprofileMpskgroup labelname {{name}}
    

    $ unset “FORTIMANAGER_IMPORT_TABLE”

    -> Hint: The scopetype and adom for import will directly inherit the scopetype and adom configuration of the provider.

    To learn more about importing existing cloud resources, see Importing resources.

    Package Details

    Repository
    fortimanager fortinetdev/terraform-provider-fortimanager
    License
    Notes
    This Pulumi package is based on the fortimanager Terraform Provider.
    fortimanager logo
    fortimanager 1.13.0 published on Thursday, Mar 13, 2025 by fortinetdev