fortimanager.ObjectWirelesscontrollerMpskprofileMpskgroupMpskkey
Explore with Pulumi AI
List of multiple PSK entries.
This resource is a sub resource for variable
mpsk_keyof resourcefortimanager.ObjectWirelesscontrollerMpskprofileMpskgroup. Conflict and overwrite may occur if use both of them.
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", {mpskProfile: trnameObjectWirelesscontrollerMpskprofile.name}, {
    dependsOn: [trnameObjectWirelesscontrollerMpskprofile],
});
const trnameObjectWirelesscontrollerMpskprofileMpskgroupMpskkey = new fortimanager.ObjectWirelesscontrollerMpskprofileMpskgroupMpskkey("trnameObjectWirelesscontrollerMpskprofileMpskgroupMpskkey", {
    passphrases: ["psph"],
    mpskProfile: trnameObjectWirelesscontrollerMpskprofile.name,
    mpskGroup: trnameObjectWirelesscontrollerMpskprofileMpskgroup.name,
}, {
    dependsOn: [trnameObjectWirelesscontrollerMpskprofileMpskgroup],
});
import pulumi
import pulumi_fortimanager as fortimanager
trname_object_wirelesscontroller_mpskprofile = fortimanager.ObjectWirelesscontrollerMpskprofile("trnameObjectWirelesscontrollerMpskprofile")
trname_object_wirelesscontroller_mpskprofile_mpskgroup = fortimanager.ObjectWirelesscontrollerMpskprofileMpskgroup("trnameObjectWirelesscontrollerMpskprofileMpskgroup", mpsk_profile=trname_object_wirelesscontroller_mpskprofile.name,
opts = pulumi.ResourceOptions(depends_on=[trname_object_wirelesscontroller_mpskprofile]))
trname_object_wirelesscontroller_mpskprofile_mpskgroup_mpskkey = fortimanager.ObjectWirelesscontrollerMpskprofileMpskgroupMpskkey("trnameObjectWirelesscontrollerMpskprofileMpskgroupMpskkey",
    passphrases=["psph"],
    mpsk_profile=trname_object_wirelesscontroller_mpskprofile.name,
    mpsk_group=trname_object_wirelesscontroller_mpskprofile_mpskgroup.name,
    opts = pulumi.ResourceOptions(depends_on=[trname_object_wirelesscontroller_mpskprofile_mpskgroup]))
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
		}
		trnameObjectWirelesscontrollerMpskprofileMpskgroup, err := fortimanager.NewObjectWirelesscontrollerMpskprofileMpskgroup(ctx, "trnameObjectWirelesscontrollerMpskprofileMpskgroup", &fortimanager.ObjectWirelesscontrollerMpskprofileMpskgroupArgs{
			MpskProfile: trnameObjectWirelesscontrollerMpskprofile.Name,
		}, pulumi.DependsOn([]pulumi.Resource{
			trnameObjectWirelesscontrollerMpskprofile,
		}))
		if err != nil {
			return err
		}
		_, err = fortimanager.NewObjectWirelesscontrollerMpskprofileMpskgroupMpskkey(ctx, "trnameObjectWirelesscontrollerMpskprofileMpskgroupMpskkey", &fortimanager.ObjectWirelesscontrollerMpskprofileMpskgroupMpskkeyArgs{
			Passphrases: pulumi.StringArray{
				pulumi.String("psph"),
			},
			MpskProfile: trnameObjectWirelesscontrollerMpskprofile.Name,
			MpskGroup:   trnameObjectWirelesscontrollerMpskprofileMpskgroup.Name,
		}, pulumi.DependsOn([]pulumi.Resource{
			trnameObjectWirelesscontrollerMpskprofileMpskgroup,
		}))
		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()
    {
        MpskProfile = trnameObjectWirelesscontrollerMpskprofile.Name,
    }, new CustomResourceOptions
    {
        DependsOn =
        {
            trnameObjectWirelesscontrollerMpskprofile,
        },
    });
    var trnameObjectWirelesscontrollerMpskprofileMpskgroupMpskkey = new Fortimanager.ObjectWirelesscontrollerMpskprofileMpskgroupMpskkey("trnameObjectWirelesscontrollerMpskprofileMpskgroupMpskkey", new()
    {
        Passphrases = new[]
        {
            "psph",
        },
        MpskProfile = trnameObjectWirelesscontrollerMpskprofile.Name,
        MpskGroup = trnameObjectWirelesscontrollerMpskprofileMpskgroup.Name,
    }, new CustomResourceOptions
    {
        DependsOn =
        {
            trnameObjectWirelesscontrollerMpskprofileMpskgroup,
        },
    });
});
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.fortimanager.ObjectWirelesscontrollerMpskprofileMpskgroupMpskkey;
import com.pulumi.fortimanager.ObjectWirelesscontrollerMpskprofileMpskgroupMpskkeyArgs;
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()
            .mpskProfile(trnameObjectWirelesscontrollerMpskprofile.name())
            .build(), CustomResourceOptions.builder()
                .dependsOn(trnameObjectWirelesscontrollerMpskprofile)
                .build());
        var trnameObjectWirelesscontrollerMpskprofileMpskgroupMpskkey = new ObjectWirelesscontrollerMpskprofileMpskgroupMpskkey("trnameObjectWirelesscontrollerMpskprofileMpskgroupMpskkey", ObjectWirelesscontrollerMpskprofileMpskgroupMpskkeyArgs.builder()
            .passphrases("psph")
            .mpskProfile(trnameObjectWirelesscontrollerMpskprofile.name())
            .mpskGroup(trnameObjectWirelesscontrollerMpskprofileMpskgroup.name())
            .build(), CustomResourceOptions.builder()
                .dependsOn(trnameObjectWirelesscontrollerMpskprofileMpskgroup)
                .build());
    }
}
resources:
  trnameObjectWirelesscontrollerMpskprofileMpskgroupMpskkey:
    type: fortimanager:ObjectWirelesscontrollerMpskprofileMpskgroupMpskkey
    properties:
      passphrases:
        - psph
      mpskProfile: ${trnameObjectWirelesscontrollerMpskprofile.name}
      mpskGroup: ${trnameObjectWirelesscontrollerMpskprofileMpskgroup.name}
    options:
      dependsOn:
        - ${trnameObjectWirelesscontrollerMpskprofileMpskgroup}
  trnameObjectWirelesscontrollerMpskprofileMpskgroup:
    type: fortimanager:ObjectWirelesscontrollerMpskprofileMpskgroup
    properties:
      mpskProfile: ${trnameObjectWirelesscontrollerMpskprofile.name}
    options:
      dependsOn:
        - ${trnameObjectWirelesscontrollerMpskprofile}
  trnameObjectWirelesscontrollerMpskprofile:
    type: fortimanager:ObjectWirelesscontrollerMpskprofile
Create ObjectWirelesscontrollerMpskprofileMpskgroupMpskkey Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new ObjectWirelesscontrollerMpskprofileMpskgroupMpskkey(name: string, args: ObjectWirelesscontrollerMpskprofileMpskgroupMpskkeyArgs, opts?: CustomResourceOptions);@overload
def ObjectWirelesscontrollerMpskprofileMpskgroupMpskkey(resource_name: str,
                                                        args: ObjectWirelesscontrollerMpskprofileMpskgroupMpskkeyArgs,
                                                        opts: Optional[ResourceOptions] = None)
@overload
def ObjectWirelesscontrollerMpskprofileMpskgroupMpskkey(resource_name: str,
                                                        opts: Optional[ResourceOptions] = None,
                                                        mpsk_group: Optional[str] = None,
                                                        mpsk_profile: Optional[str] = None,
                                                        concurrent_clients: Optional[float] = None,
                                                        adom: Optional[str] = None,
                                                        mac: Optional[str] = None,
                                                        concurrent_client_limit_type: Optional[str] = None,
                                                        comment: Optional[str] = None,
                                                        mpsk_schedules: Optional[str] = None,
                                                        name: Optional[str] = None,
                                                        object_wirelesscontroller_mpskprofile_mpskgroup_mpskkey_id: Optional[str] = None,
                                                        passphrases: Optional[Sequence[str]] = None,
                                                        pmks: Optional[Sequence[str]] = None,
                                                        scopetype: Optional[str] = None)func NewObjectWirelesscontrollerMpskprofileMpskgroupMpskkey(ctx *Context, name string, args ObjectWirelesscontrollerMpskprofileMpskgroupMpskkeyArgs, opts ...ResourceOption) (*ObjectWirelesscontrollerMpskprofileMpskgroupMpskkey, error)public ObjectWirelesscontrollerMpskprofileMpskgroupMpskkey(string name, ObjectWirelesscontrollerMpskprofileMpskgroupMpskkeyArgs args, CustomResourceOptions? opts = null)
public ObjectWirelesscontrollerMpskprofileMpskgroupMpskkey(String name, ObjectWirelesscontrollerMpskprofileMpskgroupMpskkeyArgs args)
public ObjectWirelesscontrollerMpskprofileMpskgroupMpskkey(String name, ObjectWirelesscontrollerMpskprofileMpskgroupMpskkeyArgs args, CustomResourceOptions options)
type: fortimanager:ObjectWirelesscontrollerMpskprofileMpskgroupMpskkey
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 ObjectWirelesscontrollerMpskprofileMpskgroupMpskkeyArgs
- 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 ObjectWirelesscontrollerMpskprofileMpskgroupMpskkeyArgs
- 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 ObjectWirelesscontrollerMpskprofileMpskgroupMpskkeyArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ObjectWirelesscontrollerMpskprofileMpskgroupMpskkeyArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ObjectWirelesscontrollerMpskprofileMpskgroupMpskkeyArgs
- 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 objectWirelesscontrollerMpskprofileMpskgroupMpskkeyResource = new Fortimanager.ObjectWirelesscontrollerMpskprofileMpskgroupMpskkey("objectWirelesscontrollerMpskprofileMpskgroupMpskkeyResource", new()
{
    MpskGroup = "string",
    MpskProfile = "string",
    ConcurrentClients = 0,
    Adom = "string",
    Mac = "string",
    ConcurrentClientLimitType = "string",
    Comment = "string",
    MpskSchedules = "string",
    Name = "string",
    ObjectWirelesscontrollerMpskprofileMpskgroupMpskkeyId = "string",
    Passphrases = new[]
    {
        "string",
    },
    Pmks = new[]
    {
        "string",
    },
    Scopetype = "string",
});
example, err := fortimanager.NewObjectWirelesscontrollerMpskprofileMpskgroupMpskkey(ctx, "objectWirelesscontrollerMpskprofileMpskgroupMpskkeyResource", &fortimanager.ObjectWirelesscontrollerMpskprofileMpskgroupMpskkeyArgs{
MpskGroup: pulumi.String("string"),
MpskProfile: pulumi.String("string"),
ConcurrentClients: pulumi.Float64(0),
Adom: pulumi.String("string"),
Mac: pulumi.String("string"),
ConcurrentClientLimitType: pulumi.String("string"),
Comment: pulumi.String("string"),
MpskSchedules: pulumi.String("string"),
Name: pulumi.String("string"),
ObjectWirelesscontrollerMpskprofileMpskgroupMpskkeyId: pulumi.String("string"),
Passphrases: pulumi.StringArray{
pulumi.String("string"),
},
Pmks: pulumi.StringArray{
pulumi.String("string"),
},
Scopetype: pulumi.String("string"),
})
var objectWirelesscontrollerMpskprofileMpskgroupMpskkeyResource = new ObjectWirelesscontrollerMpskprofileMpskgroupMpskkey("objectWirelesscontrollerMpskprofileMpskgroupMpskkeyResource", ObjectWirelesscontrollerMpskprofileMpskgroupMpskkeyArgs.builder()
    .mpskGroup("string")
    .mpskProfile("string")
    .concurrentClients(0)
    .adom("string")
    .mac("string")
    .concurrentClientLimitType("string")
    .comment("string")
    .mpskSchedules("string")
    .name("string")
    .objectWirelesscontrollerMpskprofileMpskgroupMpskkeyId("string")
    .passphrases("string")
    .pmks("string")
    .scopetype("string")
    .build());
object_wirelesscontroller_mpskprofile_mpskgroup_mpskkey_resource = fortimanager.ObjectWirelesscontrollerMpskprofileMpskgroupMpskkey("objectWirelesscontrollerMpskprofileMpskgroupMpskkeyResource",
    mpsk_group="string",
    mpsk_profile="string",
    concurrent_clients=0,
    adom="string",
    mac="string",
    concurrent_client_limit_type="string",
    comment="string",
    mpsk_schedules="string",
    name="string",
    object_wirelesscontroller_mpskprofile_mpskgroup_mpskkey_id="string",
    passphrases=["string"],
    pmks=["string"],
    scopetype="string")
const objectWirelesscontrollerMpskprofileMpskgroupMpskkeyResource = new fortimanager.ObjectWirelesscontrollerMpskprofileMpskgroupMpskkey("objectWirelesscontrollerMpskprofileMpskgroupMpskkeyResource", {
    mpskGroup: "string",
    mpskProfile: "string",
    concurrentClients: 0,
    adom: "string",
    mac: "string",
    concurrentClientLimitType: "string",
    comment: "string",
    mpskSchedules: "string",
    name: "string",
    objectWirelesscontrollerMpskprofileMpskgroupMpskkeyId: "string",
    passphrases: ["string"],
    pmks: ["string"],
    scopetype: "string",
});
type: fortimanager:ObjectWirelesscontrollerMpskprofileMpskgroupMpskkey
properties:
    adom: string
    comment: string
    concurrentClientLimitType: string
    concurrentClients: 0
    mac: string
    mpskGroup: string
    mpskProfile: string
    mpskSchedules: string
    name: string
    objectWirelesscontrollerMpskprofileMpskgroupMpskkeyId: string
    passphrases:
        - string
    pmks:
        - string
    scopetype: string
ObjectWirelesscontrollerMpskprofileMpskgroupMpskkey 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 ObjectWirelesscontrollerMpskprofileMpskgroupMpskkey resource accepts the following input properties:
- MpskGroup string
- Mpsk Group.
- MpskProfile string
- Mpsk Profile.
- Adom string
- Adom. This value is valid only when the scopetypeisadom, otherwise the value of adom in the provider will be inherited.
- Comment string
- Comment.
- ConcurrentClient stringLimit Type 
- 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.
- ObjectWirelesscontroller stringMpskprofile Mpskgroup Mpskkey Id 
- an identifier for the resource with format {{name}}.
- Passphrases List<string>
- WPA Pre-shared key.
- Pmks List<string>
- WPA PMK.
- Scopetype string
- The scope of application of the resource. Valid values: inherit,adom,global. Theinheritmeans that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit.
- MpskGroup string
- Mpsk Group.
- MpskProfile string
- Mpsk Profile.
- Adom string
- Adom. This value is valid only when the scopetypeisadom, otherwise the value of adom in the provider will be inherited.
- Comment string
- Comment.
- ConcurrentClient stringLimit Type 
- 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.
- ObjectWirelesscontroller stringMpskprofile Mpskgroup Mpskkey Id 
- an identifier for the resource with format {{name}}.
- Passphrases []string
- WPA Pre-shared key.
- Pmks []string
- WPA PMK.
- Scopetype string
- The scope of application of the resource. Valid values: inherit,adom,global. Theinheritmeans that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit.
- mpskGroup String
- Mpsk Group.
- mpskProfile String
- Mpsk Profile.
- adom String
- Adom. This value is valid only when the scopetypeisadom, otherwise the value of adom in the provider will be inherited.
- comment String
- Comment.
- concurrentClient StringLimit Type 
- 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.
- objectWirelesscontroller StringMpskprofile Mpskgroup Mpskkey Id 
- an identifier for the resource with format {{name}}.
- passphrases List<String>
- WPA Pre-shared key.
- pmks List<String>
- WPA PMK.
- scopetype String
- The scope of application of the resource. Valid values: inherit,adom,global. Theinheritmeans that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit.
- mpskGroup string
- Mpsk Group.
- mpskProfile string
- Mpsk Profile.
- adom string
- Adom. This value is valid only when the scopetypeisadom, otherwise the value of adom in the provider will be inherited.
- comment string
- Comment.
- concurrentClient stringLimit Type 
- 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.
- objectWirelesscontroller stringMpskprofile Mpskgroup Mpskkey Id 
- an identifier for the resource with format {{name}}.
- passphrases string[]
- WPA Pre-shared key.
- pmks string[]
- WPA PMK.
- scopetype string
- The scope of application of the resource. Valid values: inherit,adom,global. Theinheritmeans that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit.
- mpsk_group str
- Mpsk Group.
- mpsk_profile str
- Mpsk Profile.
- adom str
- Adom. This value is valid only when the scopetypeisadom, otherwise the value of adom in the provider will be inherited.
- 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.
- object_wirelesscontroller_ strmpskprofile_ mpskgroup_ mpskkey_ id 
- an identifier for the resource with format {{name}}.
- passphrases Sequence[str]
- WPA Pre-shared key.
- pmks Sequence[str]
- WPA PMK.
- scopetype str
- The scope of application of the resource. Valid values: inherit,adom,global. Theinheritmeans that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit.
- mpskGroup String
- Mpsk Group.
- mpskProfile String
- Mpsk Profile.
- adom String
- Adom. This value is valid only when the scopetypeisadom, otherwise the value of adom in the provider will be inherited.
- comment String
- Comment.
- concurrentClient StringLimit Type 
- 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.
- objectWirelesscontroller StringMpskprofile Mpskgroup Mpskkey Id 
- an identifier for the resource with format {{name}}.
- passphrases List<String>
- WPA Pre-shared key.
- pmks List<String>
- WPA PMK.
- scopetype String
- The scope of application of the resource. Valid values: inherit,adom,global. Theinheritmeans that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit.
Outputs
All input properties are implicitly available as output properties. Additionally, the ObjectWirelesscontrollerMpskprofileMpskgroupMpskkey 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 ObjectWirelesscontrollerMpskprofileMpskgroupMpskkey Resource
Get an existing ObjectWirelesscontrollerMpskprofileMpskgroupMpskkey 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?: ObjectWirelesscontrollerMpskprofileMpskgroupMpskkeyState, opts?: CustomResourceOptions): ObjectWirelesscontrollerMpskprofileMpskgroupMpskkey@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        adom: Optional[str] = None,
        comment: Optional[str] = None,
        concurrent_client_limit_type: Optional[str] = None,
        concurrent_clients: Optional[float] = None,
        mac: Optional[str] = None,
        mpsk_group: Optional[str] = None,
        mpsk_profile: Optional[str] = None,
        mpsk_schedules: Optional[str] = None,
        name: Optional[str] = None,
        object_wirelesscontroller_mpskprofile_mpskgroup_mpskkey_id: Optional[str] = None,
        passphrases: Optional[Sequence[str]] = None,
        pmks: Optional[Sequence[str]] = None,
        scopetype: Optional[str] = None) -> ObjectWirelesscontrollerMpskprofileMpskgroupMpskkeyfunc GetObjectWirelesscontrollerMpskprofileMpskgroupMpskkey(ctx *Context, name string, id IDInput, state *ObjectWirelesscontrollerMpskprofileMpskgroupMpskkeyState, opts ...ResourceOption) (*ObjectWirelesscontrollerMpskprofileMpskgroupMpskkey, error)public static ObjectWirelesscontrollerMpskprofileMpskgroupMpskkey Get(string name, Input<string> id, ObjectWirelesscontrollerMpskprofileMpskgroupMpskkeyState? state, CustomResourceOptions? opts = null)public static ObjectWirelesscontrollerMpskprofileMpskgroupMpskkey get(String name, Output<String> id, ObjectWirelesscontrollerMpskprofileMpskgroupMpskkeyState state, CustomResourceOptions options)resources:  _:    type: fortimanager:ObjectWirelesscontrollerMpskprofileMpskgroupMpskkey    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 scopetypeisadom, otherwise the value of adom in the provider will be inherited.
- Comment string
- Comment.
- ConcurrentClient stringLimit Type 
- 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.
- MpskGroup string
- Mpsk Group.
- MpskProfile string
- Mpsk Profile.
- 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.
- ObjectWirelesscontroller stringMpskprofile Mpskgroup Mpskkey Id 
- an identifier for the resource with format {{name}}.
- Passphrases List<string>
- WPA Pre-shared key.
- Pmks List<string>
- WPA PMK.
- Scopetype string
- The scope of application of the resource. Valid values: inherit,adom,global. Theinheritmeans that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit.
- Adom string
- Adom. This value is valid only when the scopetypeisadom, otherwise the value of adom in the provider will be inherited.
- Comment string
- Comment.
- ConcurrentClient stringLimit Type 
- 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.
- MpskGroup string
- Mpsk Group.
- MpskProfile string
- Mpsk Profile.
- 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.
- ObjectWirelesscontroller stringMpskprofile Mpskgroup Mpskkey Id 
- an identifier for the resource with format {{name}}.
- Passphrases []string
- WPA Pre-shared key.
- Pmks []string
- WPA PMK.
- Scopetype string
- The scope of application of the resource. Valid values: inherit,adom,global. Theinheritmeans that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit.
- adom String
- Adom. This value is valid only when the scopetypeisadom, otherwise the value of adom in the provider will be inherited.
- comment String
- Comment.
- concurrentClient StringLimit Type 
- 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.
- mpskGroup String
- Mpsk Group.
- mpskProfile String
- Mpsk Profile.
- 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.
- objectWirelesscontroller StringMpskprofile Mpskgroup Mpskkey Id 
- an identifier for the resource with format {{name}}.
- passphrases List<String>
- WPA Pre-shared key.
- pmks List<String>
- WPA PMK.
- scopetype String
- The scope of application of the resource. Valid values: inherit,adom,global. Theinheritmeans that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit.
- adom string
- Adom. This value is valid only when the scopetypeisadom, otherwise the value of adom in the provider will be inherited.
- comment string
- Comment.
- concurrentClient stringLimit Type 
- 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.
- mpskGroup string
- Mpsk Group.
- mpskProfile string
- Mpsk Profile.
- 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.
- objectWirelesscontroller stringMpskprofile Mpskgroup Mpskkey Id 
- an identifier for the resource with format {{name}}.
- passphrases string[]
- WPA Pre-shared key.
- pmks string[]
- WPA PMK.
- scopetype string
- The scope of application of the resource. Valid values: inherit,adom,global. Theinheritmeans that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit.
- adom str
- Adom. This value is valid only when the scopetypeisadom, otherwise the value of adom in the provider will be inherited.
- 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_group str
- Mpsk Group.
- mpsk_profile str
- Mpsk Profile.
- 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.
- object_wirelesscontroller_ strmpskprofile_ mpskgroup_ mpskkey_ id 
- an identifier for the resource with format {{name}}.
- passphrases Sequence[str]
- WPA Pre-shared key.
- pmks Sequence[str]
- WPA PMK.
- scopetype str
- The scope of application of the resource. Valid values: inherit,adom,global. Theinheritmeans that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit.
- adom String
- Adom. This value is valid only when the scopetypeisadom, otherwise the value of adom in the provider will be inherited.
- comment String
- Comment.
- concurrentClient StringLimit Type 
- 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.
- mpskGroup String
- Mpsk Group.
- mpskProfile String
- Mpsk Profile.
- 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.
- objectWirelesscontroller StringMpskprofile Mpskgroup Mpskkey Id 
- an identifier for the resource with format {{name}}.
- passphrases List<String>
- WPA Pre-shared key.
- pmks List<String>
- WPA PMK.
- scopetype String
- The scope of application of the resource. Valid values: inherit,adom,global. Theinheritmeans that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit.
Import
ObjectWirelessController MpskProfileMpskGroupMpskKey can be imported using any of these accepted formats:
Set import_options = [“mpsk_profile=YOUR_VALUE”, “mpsk_group=YOUR_VALUE”] in the provider section.
$ export “FORTIMANAGER_IMPORT_TABLE”=“true”
$ pulumi import fortimanager:index/objectWirelesscontrollerMpskprofileMpskgroupMpskkey:ObjectWirelesscontrollerMpskprofileMpskgroupMpskkey 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 fortimanagerTerraform Provider.