fortimanager.ObjectVpnSslWebHostchecksoftwareCheckitemlist
Explore with Pulumi AI
Check item list.
This resource is a sub resource for variable
check_item_list
of resourcefortimanager.ObjectVpnSslWebHostchecksoftware
. 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 trnameObjectVpnSslWebHostchecksoftware = new fortimanager.ObjectVpnSslWebHostchecksoftware("trnameObjectVpnSslWebHostchecksoftware", {});
const trnameObjectVpnSslWebHostchecksoftwareCheckitemlist = new fortimanager.ObjectVpnSslWebHostchecksoftwareCheckitemlist("trnameObjectVpnSslWebHostchecksoftwareCheckitemlist", {
hostCheckSoftware: trnameObjectVpnSslWebHostchecksoftware.name,
action: "deny",
fosid: 1,
type: "file",
}, {
dependsOn: [trnameObjectVpnSslWebHostchecksoftware],
});
import pulumi
import pulumi_fortimanager as fortimanager
trname_object_vpn_ssl_web_hostchecksoftware = fortimanager.ObjectVpnSslWebHostchecksoftware("trnameObjectVpnSslWebHostchecksoftware")
trname_object_vpn_ssl_web_hostchecksoftware_checkitemlist = fortimanager.ObjectVpnSslWebHostchecksoftwareCheckitemlist("trnameObjectVpnSslWebHostchecksoftwareCheckitemlist",
host_check_software=trname_object_vpn_ssl_web_hostchecksoftware.name,
action="deny",
fosid=1,
type="file",
opts = pulumi.ResourceOptions(depends_on=[trname_object_vpn_ssl_web_hostchecksoftware]))
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 {
trnameObjectVpnSslWebHostchecksoftware, err := fortimanager.NewObjectVpnSslWebHostchecksoftware(ctx, "trnameObjectVpnSslWebHostchecksoftware", nil)
if err != nil {
return err
}
_, err = fortimanager.NewObjectVpnSslWebHostchecksoftwareCheckitemlist(ctx, "trnameObjectVpnSslWebHostchecksoftwareCheckitemlist", &fortimanager.ObjectVpnSslWebHostchecksoftwareCheckitemlistArgs{
HostCheckSoftware: trnameObjectVpnSslWebHostchecksoftware.Name,
Action: pulumi.String("deny"),
Fosid: pulumi.Float64(1),
Type: pulumi.String("file"),
}, pulumi.DependsOn([]pulumi.Resource{
trnameObjectVpnSslWebHostchecksoftware,
}))
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 trnameObjectVpnSslWebHostchecksoftware = new Fortimanager.ObjectVpnSslWebHostchecksoftware("trnameObjectVpnSslWebHostchecksoftware");
var trnameObjectVpnSslWebHostchecksoftwareCheckitemlist = new Fortimanager.ObjectVpnSslWebHostchecksoftwareCheckitemlist("trnameObjectVpnSslWebHostchecksoftwareCheckitemlist", new()
{
HostCheckSoftware = trnameObjectVpnSslWebHostchecksoftware.Name,
Action = "deny",
Fosid = 1,
Type = "file",
}, new CustomResourceOptions
{
DependsOn =
{
trnameObjectVpnSslWebHostchecksoftware,
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.fortimanager.ObjectVpnSslWebHostchecksoftware;
import com.pulumi.fortimanager.ObjectVpnSslWebHostchecksoftwareCheckitemlist;
import com.pulumi.fortimanager.ObjectVpnSslWebHostchecksoftwareCheckitemlistArgs;
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 trnameObjectVpnSslWebHostchecksoftware = new ObjectVpnSslWebHostchecksoftware("trnameObjectVpnSslWebHostchecksoftware");
var trnameObjectVpnSslWebHostchecksoftwareCheckitemlist = new ObjectVpnSslWebHostchecksoftwareCheckitemlist("trnameObjectVpnSslWebHostchecksoftwareCheckitemlist", ObjectVpnSslWebHostchecksoftwareCheckitemlistArgs.builder()
.hostCheckSoftware(trnameObjectVpnSslWebHostchecksoftware.name())
.action("deny")
.fosid(1)
.type("file")
.build(), CustomResourceOptions.builder()
.dependsOn(trnameObjectVpnSslWebHostchecksoftware)
.build());
}
}
resources:
trnameObjectVpnSslWebHostchecksoftwareCheckitemlist:
type: fortimanager:ObjectVpnSslWebHostchecksoftwareCheckitemlist
properties:
hostCheckSoftware: ${trnameObjectVpnSslWebHostchecksoftware.name}
action: deny
fosid: 1
type: file
options:
dependsOn:
- ${trnameObjectVpnSslWebHostchecksoftware}
trnameObjectVpnSslWebHostchecksoftware:
type: fortimanager:ObjectVpnSslWebHostchecksoftware
Create ObjectVpnSslWebHostchecksoftwareCheckitemlist Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new ObjectVpnSslWebHostchecksoftwareCheckitemlist(name: string, args: ObjectVpnSslWebHostchecksoftwareCheckitemlistArgs, opts?: CustomResourceOptions);
@overload
def ObjectVpnSslWebHostchecksoftwareCheckitemlist(resource_name: str,
args: ObjectVpnSslWebHostchecksoftwareCheckitemlistArgs,
opts: Optional[ResourceOptions] = None)
@overload
def ObjectVpnSslWebHostchecksoftwareCheckitemlist(resource_name: str,
opts: Optional[ResourceOptions] = None,
host_check_software: Optional[str] = None,
action: Optional[str] = None,
adom: Optional[str] = None,
fosid: Optional[float] = None,
md5s: Optional[Sequence[str]] = None,
object_vpn_ssl_web_hostchecksoftware_checkitemlist_id: Optional[str] = None,
scopetype: Optional[str] = None,
target: Optional[str] = None,
type: Optional[str] = None,
version: Optional[str] = None)
func NewObjectVpnSslWebHostchecksoftwareCheckitemlist(ctx *Context, name string, args ObjectVpnSslWebHostchecksoftwareCheckitemlistArgs, opts ...ResourceOption) (*ObjectVpnSslWebHostchecksoftwareCheckitemlist, error)
public ObjectVpnSslWebHostchecksoftwareCheckitemlist(string name, ObjectVpnSslWebHostchecksoftwareCheckitemlistArgs args, CustomResourceOptions? opts = null)
public ObjectVpnSslWebHostchecksoftwareCheckitemlist(String name, ObjectVpnSslWebHostchecksoftwareCheckitemlistArgs args)
public ObjectVpnSslWebHostchecksoftwareCheckitemlist(String name, ObjectVpnSslWebHostchecksoftwareCheckitemlistArgs args, CustomResourceOptions options)
type: fortimanager:ObjectVpnSslWebHostchecksoftwareCheckitemlist
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 ObjectVpnSslWebHostchecksoftwareCheckitemlistArgs
- 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 ObjectVpnSslWebHostchecksoftwareCheckitemlistArgs
- 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 ObjectVpnSslWebHostchecksoftwareCheckitemlistArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ObjectVpnSslWebHostchecksoftwareCheckitemlistArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ObjectVpnSslWebHostchecksoftwareCheckitemlistArgs
- 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 objectVpnSslWebHostchecksoftwareCheckitemlistResource = new Fortimanager.ObjectVpnSslWebHostchecksoftwareCheckitemlist("objectVpnSslWebHostchecksoftwareCheckitemlistResource", new()
{
HostCheckSoftware = "string",
Action = "string",
Adom = "string",
Fosid = 0,
Md5s = new[]
{
"string",
},
ObjectVpnSslWebHostchecksoftwareCheckitemlistId = "string",
Scopetype = "string",
Target = "string",
Type = "string",
Version = "string",
});
example, err := fortimanager.NewObjectVpnSslWebHostchecksoftwareCheckitemlist(ctx, "objectVpnSslWebHostchecksoftwareCheckitemlistResource", &fortimanager.ObjectVpnSslWebHostchecksoftwareCheckitemlistArgs{
HostCheckSoftware: pulumi.String("string"),
Action: pulumi.String("string"),
Adom: pulumi.String("string"),
Fosid: pulumi.Float64(0),
Md5s: pulumi.StringArray{
pulumi.String("string"),
},
ObjectVpnSslWebHostchecksoftwareCheckitemlistId: pulumi.String("string"),
Scopetype: pulumi.String("string"),
Target: pulumi.String("string"),
Type: pulumi.String("string"),
Version: pulumi.String("string"),
})
var objectVpnSslWebHostchecksoftwareCheckitemlistResource = new ObjectVpnSslWebHostchecksoftwareCheckitemlist("objectVpnSslWebHostchecksoftwareCheckitemlistResource", ObjectVpnSslWebHostchecksoftwareCheckitemlistArgs.builder()
.hostCheckSoftware("string")
.action("string")
.adom("string")
.fosid(0)
.md5s("string")
.objectVpnSslWebHostchecksoftwareCheckitemlistId("string")
.scopetype("string")
.target("string")
.type("string")
.version("string")
.build());
object_vpn_ssl_web_hostchecksoftware_checkitemlist_resource = fortimanager.ObjectVpnSslWebHostchecksoftwareCheckitemlist("objectVpnSslWebHostchecksoftwareCheckitemlistResource",
host_check_software="string",
action="string",
adom="string",
fosid=0,
md5s=["string"],
object_vpn_ssl_web_hostchecksoftware_checkitemlist_id="string",
scopetype="string",
target="string",
type="string",
version="string")
const objectVpnSslWebHostchecksoftwareCheckitemlistResource = new fortimanager.ObjectVpnSslWebHostchecksoftwareCheckitemlist("objectVpnSslWebHostchecksoftwareCheckitemlistResource", {
hostCheckSoftware: "string",
action: "string",
adom: "string",
fosid: 0,
md5s: ["string"],
objectVpnSslWebHostchecksoftwareCheckitemlistId: "string",
scopetype: "string",
target: "string",
type: "string",
version: "string",
});
type: fortimanager:ObjectVpnSslWebHostchecksoftwareCheckitemlist
properties:
action: string
adom: string
fosid: 0
hostCheckSoftware: string
md5s:
- string
objectVpnSslWebHostchecksoftwareCheckitemlistId: string
scopetype: string
target: string
type: string
version: string
ObjectVpnSslWebHostchecksoftwareCheckitemlist 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 ObjectVpnSslWebHostchecksoftwareCheckitemlist resource accepts the following input properties:
- Host
Check stringSoftware - Host Check Software.
- Action string
- Action. Valid values:
deny
,require
. - Adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - Fosid double
- ID (0 - 4294967295).
- Md5s List<string>
- MD5 checksum.
- Object
Vpn stringSsl Web Hostchecksoftware Checkitemlist Id - an identifier for the resource with format {{fosid}}.
- 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
. - Target string
- Target.
- Type string
- Type. Valid values:
file
,registry
,process
. - Version string
- Version.
- Host
Check stringSoftware - Host Check Software.
- Action string
- Action. Valid values:
deny
,require
. - Adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - Fosid float64
- ID (0 - 4294967295).
- Md5s []string
- MD5 checksum.
- Object
Vpn stringSsl Web Hostchecksoftware Checkitemlist Id - an identifier for the resource with format {{fosid}}.
- 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
. - Target string
- Target.
- Type string
- Type. Valid values:
file
,registry
,process
. - Version string
- Version.
- host
Check StringSoftware - Host Check Software.
- action String
- Action. Valid values:
deny
,require
. - adom String
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - fosid Double
- ID (0 - 4294967295).
- md5s List<String>
- MD5 checksum.
- object
Vpn StringSsl Web Hostchecksoftware Checkitemlist Id - an identifier for the resource with format {{fosid}}.
- 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
. - target String
- Target.
- type String
- Type. Valid values:
file
,registry
,process
. - version String
- Version.
- host
Check stringSoftware - Host Check Software.
- action string
- Action. Valid values:
deny
,require
. - adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - fosid number
- ID (0 - 4294967295).
- md5s string[]
- MD5 checksum.
- object
Vpn stringSsl Web Hostchecksoftware Checkitemlist Id - an identifier for the resource with format {{fosid}}.
- 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
. - target string
- Target.
- type string
- Type. Valid values:
file
,registry
,process
. - version string
- Version.
- host_
check_ strsoftware - Host Check Software.
- action str
- Action. Valid values:
deny
,require
. - adom str
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - fosid float
- ID (0 - 4294967295).
- md5s Sequence[str]
- MD5 checksum.
- object_
vpn_ strssl_ web_ hostchecksoftware_ checkitemlist_ id - an identifier for the resource with format {{fosid}}.
- 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
. - target str
- Target.
- type str
- Type. Valid values:
file
,registry
,process
. - version str
- Version.
- host
Check StringSoftware - Host Check Software.
- action String
- Action. Valid values:
deny
,require
. - adom String
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - fosid Number
- ID (0 - 4294967295).
- md5s List<String>
- MD5 checksum.
- object
Vpn StringSsl Web Hostchecksoftware Checkitemlist Id - an identifier for the resource with format {{fosid}}.
- 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
. - target String
- Target.
- type String
- Type. Valid values:
file
,registry
,process
. - version String
- Version.
Outputs
All input properties are implicitly available as output properties. Additionally, the ObjectVpnSslWebHostchecksoftwareCheckitemlist 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 ObjectVpnSslWebHostchecksoftwareCheckitemlist Resource
Get an existing ObjectVpnSslWebHostchecksoftwareCheckitemlist 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?: ObjectVpnSslWebHostchecksoftwareCheckitemlistState, opts?: CustomResourceOptions): ObjectVpnSslWebHostchecksoftwareCheckitemlist
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
action: Optional[str] = None,
adom: Optional[str] = None,
fosid: Optional[float] = None,
host_check_software: Optional[str] = None,
md5s: Optional[Sequence[str]] = None,
object_vpn_ssl_web_hostchecksoftware_checkitemlist_id: Optional[str] = None,
scopetype: Optional[str] = None,
target: Optional[str] = None,
type: Optional[str] = None,
version: Optional[str] = None) -> ObjectVpnSslWebHostchecksoftwareCheckitemlist
func GetObjectVpnSslWebHostchecksoftwareCheckitemlist(ctx *Context, name string, id IDInput, state *ObjectVpnSslWebHostchecksoftwareCheckitemlistState, opts ...ResourceOption) (*ObjectVpnSslWebHostchecksoftwareCheckitemlist, error)
public static ObjectVpnSslWebHostchecksoftwareCheckitemlist Get(string name, Input<string> id, ObjectVpnSslWebHostchecksoftwareCheckitemlistState? state, CustomResourceOptions? opts = null)
public static ObjectVpnSslWebHostchecksoftwareCheckitemlist get(String name, Output<String> id, ObjectVpnSslWebHostchecksoftwareCheckitemlistState state, CustomResourceOptions options)
resources: _: type: fortimanager:ObjectVpnSslWebHostchecksoftwareCheckitemlist 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.
- Action string
- Action. Valid values:
deny
,require
. - Adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - Fosid double
- ID (0 - 4294967295).
- Host
Check stringSoftware - Host Check Software.
- Md5s List<string>
- MD5 checksum.
- Object
Vpn stringSsl Web Hostchecksoftware Checkitemlist Id - an identifier for the resource with format {{fosid}}.
- 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
. - Target string
- Target.
- Type string
- Type. Valid values:
file
,registry
,process
. - Version string
- Version.
- Action string
- Action. Valid values:
deny
,require
. - Adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - Fosid float64
- ID (0 - 4294967295).
- Host
Check stringSoftware - Host Check Software.
- Md5s []string
- MD5 checksum.
- Object
Vpn stringSsl Web Hostchecksoftware Checkitemlist Id - an identifier for the resource with format {{fosid}}.
- 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
. - Target string
- Target.
- Type string
- Type. Valid values:
file
,registry
,process
. - Version string
- Version.
- action String
- Action. Valid values:
deny
,require
. - adom String
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - fosid Double
- ID (0 - 4294967295).
- host
Check StringSoftware - Host Check Software.
- md5s List<String>
- MD5 checksum.
- object
Vpn StringSsl Web Hostchecksoftware Checkitemlist Id - an identifier for the resource with format {{fosid}}.
- 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
. - target String
- Target.
- type String
- Type. Valid values:
file
,registry
,process
. - version String
- Version.
- action string
- Action. Valid values:
deny
,require
. - adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - fosid number
- ID (0 - 4294967295).
- host
Check stringSoftware - Host Check Software.
- md5s string[]
- MD5 checksum.
- object
Vpn stringSsl Web Hostchecksoftware Checkitemlist Id - an identifier for the resource with format {{fosid}}.
- 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
. - target string
- Target.
- type string
- Type. Valid values:
file
,registry
,process
. - version string
- Version.
- action str
- Action. Valid values:
deny
,require
. - adom str
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - fosid float
- ID (0 - 4294967295).
- host_
check_ strsoftware - Host Check Software.
- md5s Sequence[str]
- MD5 checksum.
- object_
vpn_ strssl_ web_ hostchecksoftware_ checkitemlist_ id - an identifier for the resource with format {{fosid}}.
- 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
. - target str
- Target.
- type str
- Type. Valid values:
file
,registry
,process
. - version str
- Version.
- action String
- Action. Valid values:
deny
,require
. - adom String
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - fosid Number
- ID (0 - 4294967295).
- host
Check StringSoftware - Host Check Software.
- md5s List<String>
- MD5 checksum.
- object
Vpn StringSsl Web Hostchecksoftware Checkitemlist Id - an identifier for the resource with format {{fosid}}.
- 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
. - target String
- Target.
- type String
- Type. Valid values:
file
,registry
,process
. - version String
- Version.
Import
ObjectVpn SslWebHostCheckSoftwareCheckItemList can be imported using any of these accepted formats:
Set import_options = [“host_check_software=YOUR_VALUE”] in the provider section.
$ export “FORTIMANAGER_IMPORT_TABLE”=“true”
$ pulumi import fortimanager:index/objectVpnSslWebHostchecksoftwareCheckitemlist:ObjectVpnSslWebHostchecksoftwareCheckitemlist labelname {{fosid}}
$ 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.