fortimanager.ObjectWirelesscontrollerMpskprofileMpskgroupMpskkey
Explore with Pulumi AI
List of multiple PSK entries.
This resource is a sub resource for variable
mpsk_key
of 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:
- Mpsk
Group string - Mpsk Group.
- 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. - 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.
- Object
Wirelesscontroller 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
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
.
- Mpsk
Group string - Mpsk Group.
- 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. - 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.
- Object
Wirelesscontroller 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
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
.
- mpsk
Group String - Mpsk Group.
- 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. - 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.
- object
Wirelesscontroller 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
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
.
- mpsk
Group string - Mpsk Group.
- 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. - 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.
- object
Wirelesscontroller 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
. Theinherit
means 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
scopetype
isadom
, 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
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
.
- mpsk
Group String - Mpsk Group.
- 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. - 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.
- object
Wirelesscontroller 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
. Theinherit
means 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) -> ObjectWirelesscontrollerMpskprofileMpskgroupMpskkey
func 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
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - 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
Group string - Mpsk Group.
- Mpsk
Profile string - Mpsk Profile.
- 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.
- Object
Wirelesscontroller 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
. Theinherit
means 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
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - 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
Group string - Mpsk Group.
- Mpsk
Profile string - Mpsk Profile.
- 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.
- Object
Wirelesscontroller 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
. Theinherit
means 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
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - 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
Group String - Mpsk Group.
- mpsk
Profile String - Mpsk Profile.
- 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.
- object
Wirelesscontroller 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
. Theinherit
means 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
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - 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
Group string - Mpsk Group.
- mpsk
Profile string - Mpsk Profile.
- 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.
- object
Wirelesscontroller 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
. Theinherit
means 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
scopetype
isadom
, 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
. Theinherit
means 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
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - 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
Group String - Mpsk Group.
- mpsk
Profile String - Mpsk Profile.
- 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.
- object
Wirelesscontroller 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
. Theinherit
means 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
fortimanager
Terraform Provider.