fortimanager.ObjectWirelesscontrollerVapPortalmessageoverrides
Explore with Pulumi AI
Individual message overrides.
This resource is a sub resource for variable
portal_message_overrides
of resourcefortimanager.ObjectWirelesscontrollerVap
. 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 trnameObjectWirelesscontrollerVap = new fortimanager.ObjectWirelesscontrollerVap("trnameObjectWirelesscontrollerVap", {});
const trnameObjectWirelesscontrollerVapPortalmessageoverrides = new fortimanager.ObjectWirelesscontrollerVapPortalmessageoverrides("trnameObjectWirelesscontrollerVapPortalmessageoverrides", {
authDisclaimerPage: "1",
authLoginFailedPage: "2",
vap: trnameObjectWirelesscontrollerVap.name,
}, {
dependsOn: [trnameObjectWirelesscontrollerVap],
});
import pulumi
import pulumi_fortimanager as fortimanager
trname_object_wirelesscontroller_vap = fortimanager.ObjectWirelesscontrollerVap("trnameObjectWirelesscontrollerVap")
trname_object_wirelesscontroller_vap_portalmessageoverrides = fortimanager.ObjectWirelesscontrollerVapPortalmessageoverrides("trnameObjectWirelesscontrollerVapPortalmessageoverrides",
auth_disclaimer_page="1",
auth_login_failed_page="2",
vap=trname_object_wirelesscontroller_vap.name,
opts = pulumi.ResourceOptions(depends_on=[trname_object_wirelesscontroller_vap]))
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 {
trnameObjectWirelesscontrollerVap, err := fortimanager.NewObjectWirelesscontrollerVap(ctx, "trnameObjectWirelesscontrollerVap", nil)
if err != nil {
return err
}
_, err = fortimanager.NewObjectWirelesscontrollerVapPortalmessageoverrides(ctx, "trnameObjectWirelesscontrollerVapPortalmessageoverrides", &fortimanager.ObjectWirelesscontrollerVapPortalmessageoverridesArgs{
AuthDisclaimerPage: pulumi.String("1"),
AuthLoginFailedPage: pulumi.String("2"),
Vap: trnameObjectWirelesscontrollerVap.Name,
}, pulumi.DependsOn([]pulumi.Resource{
trnameObjectWirelesscontrollerVap,
}))
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 trnameObjectWirelesscontrollerVap = new Fortimanager.ObjectWirelesscontrollerVap("trnameObjectWirelesscontrollerVap");
var trnameObjectWirelesscontrollerVapPortalmessageoverrides = new Fortimanager.ObjectWirelesscontrollerVapPortalmessageoverrides("trnameObjectWirelesscontrollerVapPortalmessageoverrides", new()
{
AuthDisclaimerPage = "1",
AuthLoginFailedPage = "2",
Vap = trnameObjectWirelesscontrollerVap.Name,
}, new CustomResourceOptions
{
DependsOn =
{
trnameObjectWirelesscontrollerVap,
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.fortimanager.ObjectWirelesscontrollerVap;
import com.pulumi.fortimanager.ObjectWirelesscontrollerVapPortalmessageoverrides;
import com.pulumi.fortimanager.ObjectWirelesscontrollerVapPortalmessageoverridesArgs;
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 trnameObjectWirelesscontrollerVap = new ObjectWirelesscontrollerVap("trnameObjectWirelesscontrollerVap");
var trnameObjectWirelesscontrollerVapPortalmessageoverrides = new ObjectWirelesscontrollerVapPortalmessageoverrides("trnameObjectWirelesscontrollerVapPortalmessageoverrides", ObjectWirelesscontrollerVapPortalmessageoverridesArgs.builder()
.authDisclaimerPage(1)
.authLoginFailedPage(2)
.vap(trnameObjectWirelesscontrollerVap.name())
.build(), CustomResourceOptions.builder()
.dependsOn(trnameObjectWirelesscontrollerVap)
.build());
}
}
resources:
trnameObjectWirelesscontrollerVapPortalmessageoverrides:
type: fortimanager:ObjectWirelesscontrollerVapPortalmessageoverrides
properties:
authDisclaimerPage: 1
authLoginFailedPage: 2
vap: ${trnameObjectWirelesscontrollerVap.name}
options:
dependsOn:
- ${trnameObjectWirelesscontrollerVap}
trnameObjectWirelesscontrollerVap:
type: fortimanager:ObjectWirelesscontrollerVap
Create ObjectWirelesscontrollerVapPortalmessageoverrides Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new ObjectWirelesscontrollerVapPortalmessageoverrides(name: string, args: ObjectWirelesscontrollerVapPortalmessageoverridesArgs, opts?: CustomResourceOptions);
@overload
def ObjectWirelesscontrollerVapPortalmessageoverrides(resource_name: str,
args: ObjectWirelesscontrollerVapPortalmessageoverridesArgs,
opts: Optional[ResourceOptions] = None)
@overload
def ObjectWirelesscontrollerVapPortalmessageoverrides(resource_name: str,
opts: Optional[ResourceOptions] = None,
vap: Optional[str] = None,
adom: Optional[str] = None,
auth_disclaimer_page: Optional[str] = None,
auth_login_failed_page: Optional[str] = None,
auth_login_page: Optional[str] = None,
auth_reject_page: Optional[str] = None,
object_wirelesscontroller_vap_portalmessageoverrides_id: Optional[str] = None,
scopetype: Optional[str] = None)
func NewObjectWirelesscontrollerVapPortalmessageoverrides(ctx *Context, name string, args ObjectWirelesscontrollerVapPortalmessageoverridesArgs, opts ...ResourceOption) (*ObjectWirelesscontrollerVapPortalmessageoverrides, error)
public ObjectWirelesscontrollerVapPortalmessageoverrides(string name, ObjectWirelesscontrollerVapPortalmessageoverridesArgs args, CustomResourceOptions? opts = null)
public ObjectWirelesscontrollerVapPortalmessageoverrides(String name, ObjectWirelesscontrollerVapPortalmessageoverridesArgs args)
public ObjectWirelesscontrollerVapPortalmessageoverrides(String name, ObjectWirelesscontrollerVapPortalmessageoverridesArgs args, CustomResourceOptions options)
type: fortimanager:ObjectWirelesscontrollerVapPortalmessageoverrides
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 ObjectWirelesscontrollerVapPortalmessageoverridesArgs
- 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 ObjectWirelesscontrollerVapPortalmessageoverridesArgs
- 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 ObjectWirelesscontrollerVapPortalmessageoverridesArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ObjectWirelesscontrollerVapPortalmessageoverridesArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ObjectWirelesscontrollerVapPortalmessageoverridesArgs
- 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 objectWirelesscontrollerVapPortalmessageoverridesResource = new Fortimanager.ObjectWirelesscontrollerVapPortalmessageoverrides("objectWirelesscontrollerVapPortalmessageoverridesResource", new()
{
Vap = "string",
Adom = "string",
AuthDisclaimerPage = "string",
AuthLoginFailedPage = "string",
AuthLoginPage = "string",
AuthRejectPage = "string",
ObjectWirelesscontrollerVapPortalmessageoverridesId = "string",
Scopetype = "string",
});
example, err := fortimanager.NewObjectWirelesscontrollerVapPortalmessageoverrides(ctx, "objectWirelesscontrollerVapPortalmessageoverridesResource", &fortimanager.ObjectWirelesscontrollerVapPortalmessageoverridesArgs{
Vap: pulumi.String("string"),
Adom: pulumi.String("string"),
AuthDisclaimerPage: pulumi.String("string"),
AuthLoginFailedPage: pulumi.String("string"),
AuthLoginPage: pulumi.String("string"),
AuthRejectPage: pulumi.String("string"),
ObjectWirelesscontrollerVapPortalmessageoverridesId: pulumi.String("string"),
Scopetype: pulumi.String("string"),
})
var objectWirelesscontrollerVapPortalmessageoverridesResource = new ObjectWirelesscontrollerVapPortalmessageoverrides("objectWirelesscontrollerVapPortalmessageoverridesResource", ObjectWirelesscontrollerVapPortalmessageoverridesArgs.builder()
.vap("string")
.adom("string")
.authDisclaimerPage("string")
.authLoginFailedPage("string")
.authLoginPage("string")
.authRejectPage("string")
.objectWirelesscontrollerVapPortalmessageoverridesId("string")
.scopetype("string")
.build());
object_wirelesscontroller_vap_portalmessageoverrides_resource = fortimanager.ObjectWirelesscontrollerVapPortalmessageoverrides("objectWirelesscontrollerVapPortalmessageoverridesResource",
vap="string",
adom="string",
auth_disclaimer_page="string",
auth_login_failed_page="string",
auth_login_page="string",
auth_reject_page="string",
object_wirelesscontroller_vap_portalmessageoverrides_id="string",
scopetype="string")
const objectWirelesscontrollerVapPortalmessageoverridesResource = new fortimanager.ObjectWirelesscontrollerVapPortalmessageoverrides("objectWirelesscontrollerVapPortalmessageoverridesResource", {
vap: "string",
adom: "string",
authDisclaimerPage: "string",
authLoginFailedPage: "string",
authLoginPage: "string",
authRejectPage: "string",
objectWirelesscontrollerVapPortalmessageoverridesId: "string",
scopetype: "string",
});
type: fortimanager:ObjectWirelesscontrollerVapPortalmessageoverrides
properties:
adom: string
authDisclaimerPage: string
authLoginFailedPage: string
authLoginPage: string
authRejectPage: string
objectWirelesscontrollerVapPortalmessageoverridesId: string
scopetype: string
vap: string
ObjectWirelesscontrollerVapPortalmessageoverrides 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 ObjectWirelesscontrollerVapPortalmessageoverrides resource accepts the following input properties:
- Vap string
- Vap.
- Adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - Auth
Disclaimer stringPage - Override auth-disclaimer-page message with message from portal-message-overrides group.
- Auth
Login stringFailed Page - Override auth-login-failed-page message with message from portal-message-overrides group.
- Auth
Login stringPage - Override auth-login-page message with message from portal-message-overrides group.
- Auth
Reject stringPage - Override auth-reject-page message with message from portal-message-overrides group.
- Object
Wirelesscontroller stringVap Portalmessageoverrides Id - an identifier for the resource.
- 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
.
- Vap string
- Vap.
- Adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - Auth
Disclaimer stringPage - Override auth-disclaimer-page message with message from portal-message-overrides group.
- Auth
Login stringFailed Page - Override auth-login-failed-page message with message from portal-message-overrides group.
- Auth
Login stringPage - Override auth-login-page message with message from portal-message-overrides group.
- Auth
Reject stringPage - Override auth-reject-page message with message from portal-message-overrides group.
- Object
Wirelesscontroller stringVap Portalmessageoverrides Id - an identifier for the resource.
- 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
.
- vap String
- Vap.
- adom String
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - auth
Disclaimer StringPage - Override auth-disclaimer-page message with message from portal-message-overrides group.
- auth
Login StringFailed Page - Override auth-login-failed-page message with message from portal-message-overrides group.
- auth
Login StringPage - Override auth-login-page message with message from portal-message-overrides group.
- auth
Reject StringPage - Override auth-reject-page message with message from portal-message-overrides group.
- object
Wirelesscontroller StringVap Portalmessageoverrides Id - an identifier for the resource.
- 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
.
- vap string
- Vap.
- adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - auth
Disclaimer stringPage - Override auth-disclaimer-page message with message from portal-message-overrides group.
- auth
Login stringFailed Page - Override auth-login-failed-page message with message from portal-message-overrides group.
- auth
Login stringPage - Override auth-login-page message with message from portal-message-overrides group.
- auth
Reject stringPage - Override auth-reject-page message with message from portal-message-overrides group.
- object
Wirelesscontroller stringVap Portalmessageoverrides Id - an identifier for the resource.
- 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
.
- vap str
- Vap.
- adom str
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - auth_
disclaimer_ strpage - Override auth-disclaimer-page message with message from portal-message-overrides group.
- auth_
login_ strfailed_ page - Override auth-login-failed-page message with message from portal-message-overrides group.
- auth_
login_ strpage - Override auth-login-page message with message from portal-message-overrides group.
- auth_
reject_ strpage - Override auth-reject-page message with message from portal-message-overrides group.
- object_
wirelesscontroller_ strvap_ portalmessageoverrides_ id - an identifier for the resource.
- 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
.
- vap String
- Vap.
- adom String
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - auth
Disclaimer StringPage - Override auth-disclaimer-page message with message from portal-message-overrides group.
- auth
Login StringFailed Page - Override auth-login-failed-page message with message from portal-message-overrides group.
- auth
Login StringPage - Override auth-login-page message with message from portal-message-overrides group.
- auth
Reject StringPage - Override auth-reject-page message with message from portal-message-overrides group.
- object
Wirelesscontroller StringVap Portalmessageoverrides Id - an identifier for the resource.
- 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 ObjectWirelesscontrollerVapPortalmessageoverrides 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 ObjectWirelesscontrollerVapPortalmessageoverrides Resource
Get an existing ObjectWirelesscontrollerVapPortalmessageoverrides 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?: ObjectWirelesscontrollerVapPortalmessageoverridesState, opts?: CustomResourceOptions): ObjectWirelesscontrollerVapPortalmessageoverrides
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
adom: Optional[str] = None,
auth_disclaimer_page: Optional[str] = None,
auth_login_failed_page: Optional[str] = None,
auth_login_page: Optional[str] = None,
auth_reject_page: Optional[str] = None,
object_wirelesscontroller_vap_portalmessageoverrides_id: Optional[str] = None,
scopetype: Optional[str] = None,
vap: Optional[str] = None) -> ObjectWirelesscontrollerVapPortalmessageoverrides
func GetObjectWirelesscontrollerVapPortalmessageoverrides(ctx *Context, name string, id IDInput, state *ObjectWirelesscontrollerVapPortalmessageoverridesState, opts ...ResourceOption) (*ObjectWirelesscontrollerVapPortalmessageoverrides, error)
public static ObjectWirelesscontrollerVapPortalmessageoverrides Get(string name, Input<string> id, ObjectWirelesscontrollerVapPortalmessageoverridesState? state, CustomResourceOptions? opts = null)
public static ObjectWirelesscontrollerVapPortalmessageoverrides get(String name, Output<String> id, ObjectWirelesscontrollerVapPortalmessageoverridesState state, CustomResourceOptions options)
resources: _: type: fortimanager:ObjectWirelesscontrollerVapPortalmessageoverrides 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. - Auth
Disclaimer stringPage - Override auth-disclaimer-page message with message from portal-message-overrides group.
- Auth
Login stringFailed Page - Override auth-login-failed-page message with message from portal-message-overrides group.
- Auth
Login stringPage - Override auth-login-page message with message from portal-message-overrides group.
- Auth
Reject stringPage - Override auth-reject-page message with message from portal-message-overrides group.
- Object
Wirelesscontroller stringVap Portalmessageoverrides Id - an identifier for the resource.
- 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
. - Vap string
- Vap.
- Adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - Auth
Disclaimer stringPage - Override auth-disclaimer-page message with message from portal-message-overrides group.
- Auth
Login stringFailed Page - Override auth-login-failed-page message with message from portal-message-overrides group.
- Auth
Login stringPage - Override auth-login-page message with message from portal-message-overrides group.
- Auth
Reject stringPage - Override auth-reject-page message with message from portal-message-overrides group.
- Object
Wirelesscontroller stringVap Portalmessageoverrides Id - an identifier for the resource.
- 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
. - Vap string
- Vap.
- adom String
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - auth
Disclaimer StringPage - Override auth-disclaimer-page message with message from portal-message-overrides group.
- auth
Login StringFailed Page - Override auth-login-failed-page message with message from portal-message-overrides group.
- auth
Login StringPage - Override auth-login-page message with message from portal-message-overrides group.
- auth
Reject StringPage - Override auth-reject-page message with message from portal-message-overrides group.
- object
Wirelesscontroller StringVap Portalmessageoverrides Id - an identifier for the resource.
- 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
. - vap String
- Vap.
- adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - auth
Disclaimer stringPage - Override auth-disclaimer-page message with message from portal-message-overrides group.
- auth
Login stringFailed Page - Override auth-login-failed-page message with message from portal-message-overrides group.
- auth
Login stringPage - Override auth-login-page message with message from portal-message-overrides group.
- auth
Reject stringPage - Override auth-reject-page message with message from portal-message-overrides group.
- object
Wirelesscontroller stringVap Portalmessageoverrides Id - an identifier for the resource.
- 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
. - vap string
- Vap.
- adom str
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - auth_
disclaimer_ strpage - Override auth-disclaimer-page message with message from portal-message-overrides group.
- auth_
login_ strfailed_ page - Override auth-login-failed-page message with message from portal-message-overrides group.
- auth_
login_ strpage - Override auth-login-page message with message from portal-message-overrides group.
- auth_
reject_ strpage - Override auth-reject-page message with message from portal-message-overrides group.
- object_
wirelesscontroller_ strvap_ portalmessageoverrides_ id - an identifier for the resource.
- 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
. - vap str
- Vap.
- adom String
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - auth
Disclaimer StringPage - Override auth-disclaimer-page message with message from portal-message-overrides group.
- auth
Login StringFailed Page - Override auth-login-failed-page message with message from portal-message-overrides group.
- auth
Login StringPage - Override auth-login-page message with message from portal-message-overrides group.
- auth
Reject StringPage - Override auth-reject-page message with message from portal-message-overrides group.
- object
Wirelesscontroller StringVap Portalmessageoverrides Id - an identifier for the resource.
- 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
. - vap String
- Vap.
Import
ObjectWirelessController VapPortalMessageOverrides can be imported using any of these accepted formats:
Set import_options = [“vap=YOUR_VALUE”] in the provider section.
$ export “FORTIMANAGER_IMPORT_TABLE”=“true”
$ pulumi import fortimanager:index/objectWirelesscontrollerVapPortalmessageoverrides:ObjectWirelesscontrollerVapPortalmessageoverrides labelname ObjectWirelessControllerVapPortalMessageOverrides
$ 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.