fortimanager.ObjectWirelesscontrollerMpskprofileMpskgroup
Explore with Pulumi AI
List of multiple PSK groups.
This resource is a sub resource for variable
mpsk_group
of resourcefortimanager.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:
- Mpsk
Profile string - Mpsk Profile.
- Adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - Dynamic
Sort stringSubtable - 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 List<ObjectWirelesscontroller Mpskprofile Mpskgroup Mpsk Key> - Mpsk-Key. The structure of
mpsk_key
block is documented below. - Name string
- MPSK group name.
- Object
Wirelesscontroller stringMpskprofile Mpskgroup Id - an identifier for the resource with format {{name}}.
- Scopetype string
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - Vlan
Id double - Optional VLAN ID.
- Vlan
Type string - MPSK group VLAN options. Valid values:
no-vlan
,fixed-vlan
.
- Mpsk
Profile string - Mpsk Profile.
- Adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - Dynamic
Sort stringSubtable - 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 []ObjectWirelesscontroller Mpskprofile Mpskgroup Mpsk Key Type Args - Mpsk-Key. The structure of
mpsk_key
block is documented below. - Name string
- MPSK group name.
- Object
Wirelesscontroller stringMpskprofile Mpskgroup Id - an identifier for the resource with format {{name}}.
- Scopetype string
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - Vlan
Id float64 - Optional VLAN ID.
- Vlan
Type string - MPSK group VLAN options. Valid values:
no-vlan
,fixed-vlan
.
- mpsk
Profile String - Mpsk Profile.
- adom String
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - dynamic
Sort StringSubtable - 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 List<ObjectWirelesscontroller Mpskprofile Mpskgroup Mpsk Key> - Mpsk-Key. The structure of
mpsk_key
block is documented below. - name String
- MPSK group name.
- object
Wirelesscontroller StringMpskprofile Mpskgroup Id - an identifier for the resource with format {{name}}.
- scopetype String
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - vlan
Id Double - Optional VLAN ID.
- vlan
Type String - MPSK group VLAN options. Valid values:
no-vlan
,fixed-vlan
.
- mpsk
Profile string - Mpsk Profile.
- adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - dynamic
Sort stringSubtable - 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 ObjectWirelesscontroller Mpskprofile Mpskgroup Mpsk Key[] - Mpsk-Key. The structure of
mpsk_key
block is documented below. - name string
- MPSK group name.
- object
Wirelesscontroller stringMpskprofile Mpskgroup Id - an identifier for the resource with format {{name}}.
- scopetype string
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - vlan
Id number - Optional VLAN ID.
- vlan
Type 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
isadom
, otherwise the value of adom in the provider will be inherited. - dynamic_
sort_ strsubtable - 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[ObjectWirelesscontroller Mpskprofile Mpskgroup Mpsk Key Args] - Mpsk-Key. The structure of
mpsk_key
block is documented below. - name str
- MPSK group name.
- object_
wirelesscontroller_ strmpskprofile_ mpskgroup_ id - an identifier for the resource with format {{name}}.
- scopetype str
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - vlan_
id float - Optional VLAN ID.
- vlan_
type str - MPSK group VLAN options. Valid values:
no-vlan
,fixed-vlan
.
- mpsk
Profile String - Mpsk Profile.
- adom String
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - dynamic
Sort StringSubtable - 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 List<Property Map> - Mpsk-Key. The structure of
mpsk_key
block is documented below. - name String
- MPSK group name.
- object
Wirelesscontroller StringMpskprofile Mpskgroup Id - an identifier for the resource with format {{name}}.
- scopetype String
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - vlan
Id Number - Optional VLAN ID.
- vlan
Type 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.
- Adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - Dynamic
Sort stringSubtable - 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 List<ObjectWirelesscontroller Mpskprofile Mpskgroup Mpsk Key> - Mpsk-Key. The structure of
mpsk_key
block is documented below. - Mpsk
Profile string - Mpsk Profile.
- Name string
- MPSK group name.
- Object
Wirelesscontroller stringMpskprofile Mpskgroup Id - an identifier for the resource with format {{name}}.
- Scopetype string
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - Vlan
Id double - Optional VLAN ID.
- Vlan
Type string - MPSK group VLAN options. Valid values:
no-vlan
,fixed-vlan
.
- Adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - Dynamic
Sort stringSubtable - 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 []ObjectWirelesscontroller Mpskprofile Mpskgroup Mpsk Key Type Args - Mpsk-Key. The structure of
mpsk_key
block is documented below. - Mpsk
Profile string - Mpsk Profile.
- Name string
- MPSK group name.
- Object
Wirelesscontroller stringMpskprofile Mpskgroup Id - an identifier for the resource with format {{name}}.
- Scopetype string
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - Vlan
Id float64 - Optional VLAN ID.
- Vlan
Type string - MPSK group VLAN options. Valid values:
no-vlan
,fixed-vlan
.
- adom String
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - dynamic
Sort StringSubtable - 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 List<ObjectWirelesscontroller Mpskprofile Mpskgroup Mpsk Key> - Mpsk-Key. The structure of
mpsk_key
block is documented below. - mpsk
Profile String - Mpsk Profile.
- name String
- MPSK group name.
- object
Wirelesscontroller StringMpskprofile Mpskgroup Id - an identifier for the resource with format {{name}}.
- scopetype String
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - vlan
Id Double - Optional VLAN ID.
- vlan
Type String - MPSK group VLAN options. Valid values:
no-vlan
,fixed-vlan
.
- adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - dynamic
Sort stringSubtable - 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 ObjectWirelesscontroller Mpskprofile Mpskgroup Mpsk Key[] - Mpsk-Key. The structure of
mpsk_key
block is documented below. - mpsk
Profile string - Mpsk Profile.
- name string
- MPSK group name.
- object
Wirelesscontroller stringMpskprofile Mpskgroup Id - an identifier for the resource with format {{name}}.
- scopetype string
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - vlan
Id number - Optional VLAN ID.
- vlan
Type string - MPSK group VLAN options. Valid values:
no-vlan
,fixed-vlan
.
- adom str
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - dynamic_
sort_ strsubtable - 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[ObjectWirelesscontroller Mpskprofile Mpskgroup Mpsk Key Args] - Mpsk-Key. The structure of
mpsk_key
block is documented below. - mpsk_
profile str - Mpsk Profile.
- name str
- MPSK group name.
- object_
wirelesscontroller_ strmpskprofile_ mpskgroup_ id - an identifier for the resource with format {{name}}.
- scopetype str
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - 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
isadom
, otherwise the value of adom in the provider will be inherited. - dynamic
Sort StringSubtable - 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 List<Property Map> - Mpsk-Key. The structure of
mpsk_key
block is documented below. - mpsk
Profile String - Mpsk Profile.
- name String
- MPSK group name.
- object
Wirelesscontroller StringMpskprofile Mpskgroup Id - an identifier for the resource with format {{name}}.
- scopetype String
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - vlan
Id Number - Optional VLAN ID.
- vlan
Type String - MPSK group VLAN options. Valid values:
no-vlan
,fixed-vlan
.
Supporting Types
ObjectWirelesscontrollerMpskprofileMpskgroupMpskKey, ObjectWirelesscontrollerMpskprofileMpskgroupMpskKeyArgs
- Comment string
- Comment.
- Concurrent
Client stringLimit Type - MPSK client limit type options. Valid values:
default
,unlimited
,specified
. - Concurrent
Clients double - Number of clients that can connect using this pre-shared key (1 - 65535, default is 256).
- Mac string
- MAC address.
- Mpsk
Schedules 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.
- Concurrent
Client stringLimit Type - MPSK client limit type options. Valid values:
default
,unlimited
,specified
. - Concurrent
Clients float64 - Number of clients that can connect using this pre-shared key (1 - 65535, default is 256).
- Mac string
- MAC address.
- Mpsk
Schedules 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.
- concurrent
Client StringLimit Type - MPSK client limit type options. Valid values:
default
,unlimited
,specified
. - concurrent
Clients Double - Number of clients that can connect using this pre-shared key (1 - 65535, default is 256).
- mac String
- MAC address.
- mpsk
Schedules 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.
- concurrent
Client stringLimit Type - MPSK client limit type options. Valid values:
default
,unlimited
,specified
. - concurrent
Clients number - Number of clients that can connect using this pre-shared key (1 - 65535, default is 256).
- mac string
- MAC address.
- mpsk
Schedules 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_ strlimit_ type - 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.
- concurrent
Client StringLimit Type - MPSK client limit type options. Valid values:
default
,unlimited
,specified
. - concurrent
Clients Number - Number of clients that can connect using this pre-shared key (1 - 65535, default is 256).
- mac String
- MAC address.
- mpsk
Schedules 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.