fortios.system.Externalresource
Explore with Pulumi AI
Configure external resource.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as fortios from "@pulumiverse/fortios";
const trname = new fortios.system.Externalresource("trname", {
category: 199,
refreshRate: 5,
resource: "https://tmpxxxxx.com",
status: "enable",
type: "category",
});
import pulumi
import pulumiverse_fortios as fortios
trname = fortios.system.Externalresource("trname",
category=199,
refresh_rate=5,
resource="https://tmpxxxxx.com",
status="enable",
type="category")
package main
import (
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
"github.com/pulumiverse/pulumi-fortios/sdk/go/fortios/system"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := system.NewExternalresource(ctx, "trname", &system.ExternalresourceArgs{
Category: pulumi.Int(199),
RefreshRate: pulumi.Int(5),
Resource: pulumi.String("https://tmpxxxxx.com"),
Status: pulumi.String("enable"),
Type: pulumi.String("category"),
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Fortios = Pulumiverse.Fortios;
return await Deployment.RunAsync(() =>
{
var trname = new Fortios.System.Externalresource("trname", new()
{
Category = 199,
RefreshRate = 5,
Resource = "https://tmpxxxxx.com",
Status = "enable",
Type = "category",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.fortios.system.Externalresource;
import com.pulumi.fortios.system.ExternalresourceArgs;
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 trname = new Externalresource("trname", ExternalresourceArgs.builder()
.category(199)
.refreshRate(5)
.resource("https://tmpxxxxx.com")
.status("enable")
.type("category")
.build());
}
}
resources:
trname:
type: fortios:system:Externalresource
properties:
category: 199
refreshRate: 5
resource: https://tmpxxxxx.com
status: enable
type: category
Create Externalresource Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new Externalresource(name: string, args: ExternalresourceArgs, opts?: CustomResourceOptions);
@overload
def Externalresource(resource_name: str,
args: ExternalresourceArgs,
opts: Optional[ResourceOptions] = None)
@overload
def Externalresource(resource_name: str,
opts: Optional[ResourceOptions] = None,
refresh_rate: Optional[int] = None,
resource: Optional[str] = None,
server_identity_check: Optional[str] = None,
source_ip: Optional[str] = None,
name: Optional[str] = None,
password: Optional[str] = None,
interface: Optional[str] = None,
comments: Optional[str] = None,
category: Optional[int] = None,
interface_select_method: Optional[str] = None,
status: Optional[str] = None,
type: Optional[str] = None,
update_method: Optional[str] = None,
user_agent: Optional[str] = None,
username: Optional[str] = None,
uuid: Optional[str] = None,
vdomparam: Optional[str] = None)
func NewExternalresource(ctx *Context, name string, args ExternalresourceArgs, opts ...ResourceOption) (*Externalresource, error)
public Externalresource(string name, ExternalresourceArgs args, CustomResourceOptions? opts = null)
public Externalresource(String name, ExternalresourceArgs args)
public Externalresource(String name, ExternalresourceArgs args, CustomResourceOptions options)
type: fortios:system:Externalresource
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 ExternalresourceArgs
- 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 ExternalresourceArgs
- 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 ExternalresourceArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ExternalresourceArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ExternalresourceArgs
- 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 externalresourceResource = new Fortios.System.Externalresource("externalresourceResource", new()
{
RefreshRate = 0,
Resource = "string",
ServerIdentityCheck = "string",
SourceIp = "string",
Name = "string",
Password = "string",
Interface = "string",
Comments = "string",
Category = 0,
InterfaceSelectMethod = "string",
Status = "string",
Type = "string",
UpdateMethod = "string",
UserAgent = "string",
Username = "string",
Uuid = "string",
Vdomparam = "string",
});
example, err := system.NewExternalresource(ctx, "externalresourceResource", &system.ExternalresourceArgs{
RefreshRate: pulumi.Int(0),
Resource: pulumi.String("string"),
ServerIdentityCheck: pulumi.String("string"),
SourceIp: pulumi.String("string"),
Name: pulumi.String("string"),
Password: pulumi.String("string"),
Interface: pulumi.String("string"),
Comments: pulumi.String("string"),
Category: pulumi.Int(0),
InterfaceSelectMethod: pulumi.String("string"),
Status: pulumi.String("string"),
Type: pulumi.String("string"),
UpdateMethod: pulumi.String("string"),
UserAgent: pulumi.String("string"),
Username: pulumi.String("string"),
Uuid: pulumi.String("string"),
Vdomparam: pulumi.String("string"),
})
var externalresourceResource = new Externalresource("externalresourceResource", ExternalresourceArgs.builder()
.refreshRate(0)
.resource("string")
.serverIdentityCheck("string")
.sourceIp("string")
.name("string")
.password("string")
.interface_("string")
.comments("string")
.category(0)
.interfaceSelectMethod("string")
.status("string")
.type("string")
.updateMethod("string")
.userAgent("string")
.username("string")
.uuid("string")
.vdomparam("string")
.build());
externalresource_resource = fortios.system.Externalresource("externalresourceResource",
refresh_rate=0,
resource="string",
server_identity_check="string",
source_ip="string",
name="string",
password="string",
interface="string",
comments="string",
category=0,
interface_select_method="string",
status="string",
type="string",
update_method="string",
user_agent="string",
username="string",
uuid="string",
vdomparam="string")
const externalresourceResource = new fortios.system.Externalresource("externalresourceResource", {
refreshRate: 0,
resource: "string",
serverIdentityCheck: "string",
sourceIp: "string",
name: "string",
password: "string",
"interface": "string",
comments: "string",
category: 0,
interfaceSelectMethod: "string",
status: "string",
type: "string",
updateMethod: "string",
userAgent: "string",
username: "string",
uuid: "string",
vdomparam: "string",
});
type: fortios:system:Externalresource
properties:
category: 0
comments: string
interface: string
interfaceSelectMethod: string
name: string
password: string
refreshRate: 0
resource: string
serverIdentityCheck: string
sourceIp: string
status: string
type: string
updateMethod: string
userAgent: string
username: string
uuid: string
vdomparam: string
Externalresource Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
The Externalresource resource accepts the following input properties:
- Refresh
Rate int - Time interval to refresh external resource (1 - 43200 min, default = 5 min).
- Resource string
- URI of external resource.
- Category int
- User resource category.
- Comments string
- Comment.
- Interface string
- Specify outgoing interface to reach server.
- Interface
Select stringMethod - Specify how to select outgoing interface to reach server. Valid values:
auto
,sdwan
,specify
. - Name string
- External resource name.
- Password string
- HTTP basic authentication password.
- Server
Identity stringCheck - Certificate verification option. Valid values:
none
,basic
,full
. - Source
Ip string - Source IPv4 address used to communicate with server.
- Status string
- Enable/disable user resource. Valid values:
enable
,disable
. - Type string
- User resource type.
- Update
Method string - External resource update method. Valid values:
feed
,push
. - User
Agent string - HTTP User-Agent header (default = 'curl/7.58.0').
- Username string
- HTTP basic authentication user name.
- Uuid string
- Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
- Vdomparam string
- Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
- Refresh
Rate int - Time interval to refresh external resource (1 - 43200 min, default = 5 min).
- Resource string
- URI of external resource.
- Category int
- User resource category.
- Comments string
- Comment.
- Interface string
- Specify outgoing interface to reach server.
- Interface
Select stringMethod - Specify how to select outgoing interface to reach server. Valid values:
auto
,sdwan
,specify
. - Name string
- External resource name.
- Password string
- HTTP basic authentication password.
- Server
Identity stringCheck - Certificate verification option. Valid values:
none
,basic
,full
. - Source
Ip string - Source IPv4 address used to communicate with server.
- Status string
- Enable/disable user resource. Valid values:
enable
,disable
. - Type string
- User resource type.
- Update
Method string - External resource update method. Valid values:
feed
,push
. - User
Agent string - HTTP User-Agent header (default = 'curl/7.58.0').
- Username string
- HTTP basic authentication user name.
- Uuid string
- Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
- Vdomparam string
- Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
- refresh
Rate Integer - Time interval to refresh external resource (1 - 43200 min, default = 5 min).
- resource String
- URI of external resource.
- category Integer
- User resource category.
- comments String
- Comment.
- interface
Select StringMethod - Specify how to select outgoing interface to reach server. Valid values:
auto
,sdwan
,specify
. - interface_ String
- Specify outgoing interface to reach server.
- name String
- External resource name.
- password String
- HTTP basic authentication password.
- server
Identity StringCheck - Certificate verification option. Valid values:
none
,basic
,full
. - source
Ip String - Source IPv4 address used to communicate with server.
- status String
- Enable/disable user resource. Valid values:
enable
,disable
. - type String
- User resource type.
- update
Method String - External resource update method. Valid values:
feed
,push
. - user
Agent String - HTTP User-Agent header (default = 'curl/7.58.0').
- username String
- HTTP basic authentication user name.
- uuid String
- Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
- vdomparam String
- Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
- refresh
Rate number - Time interval to refresh external resource (1 - 43200 min, default = 5 min).
- resource string
- URI of external resource.
- category number
- User resource category.
- comments string
- Comment.
- interface string
- Specify outgoing interface to reach server.
- interface
Select stringMethod - Specify how to select outgoing interface to reach server. Valid values:
auto
,sdwan
,specify
. - name string
- External resource name.
- password string
- HTTP basic authentication password.
- server
Identity stringCheck - Certificate verification option. Valid values:
none
,basic
,full
. - source
Ip string - Source IPv4 address used to communicate with server.
- status string
- Enable/disable user resource. Valid values:
enable
,disable
. - type string
- User resource type.
- update
Method string - External resource update method. Valid values:
feed
,push
. - user
Agent string - HTTP User-Agent header (default = 'curl/7.58.0').
- username string
- HTTP basic authentication user name.
- uuid string
- Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
- vdomparam string
- Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
- refresh_
rate int - Time interval to refresh external resource (1 - 43200 min, default = 5 min).
- resource str
- URI of external resource.
- category int
- User resource category.
- comments str
- Comment.
- interface str
- Specify outgoing interface to reach server.
- interface_
select_ strmethod - Specify how to select outgoing interface to reach server. Valid values:
auto
,sdwan
,specify
. - name str
- External resource name.
- password str
- HTTP basic authentication password.
- server_
identity_ strcheck - Certificate verification option. Valid values:
none
,basic
,full
. - source_
ip str - Source IPv4 address used to communicate with server.
- status str
- Enable/disable user resource. Valid values:
enable
,disable
. - type str
- User resource type.
- update_
method str - External resource update method. Valid values:
feed
,push
. - user_
agent str - HTTP User-Agent header (default = 'curl/7.58.0').
- username str
- HTTP basic authentication user name.
- uuid str
- Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
- vdomparam str
- Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
- refresh
Rate Number - Time interval to refresh external resource (1 - 43200 min, default = 5 min).
- resource String
- URI of external resource.
- category Number
- User resource category.
- comments String
- Comment.
- interface String
- Specify outgoing interface to reach server.
- interface
Select StringMethod - Specify how to select outgoing interface to reach server. Valid values:
auto
,sdwan
,specify
. - name String
- External resource name.
- password String
- HTTP basic authentication password.
- server
Identity StringCheck - Certificate verification option. Valid values:
none
,basic
,full
. - source
Ip String - Source IPv4 address used to communicate with server.
- status String
- Enable/disable user resource. Valid values:
enable
,disable
. - type String
- User resource type.
- update
Method String - External resource update method. Valid values:
feed
,push
. - user
Agent String - HTTP User-Agent header (default = 'curl/7.58.0').
- username String
- HTTP basic authentication user name.
- uuid String
- Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
- vdomparam String
- Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
Outputs
All input properties are implicitly available as output properties. Additionally, the Externalresource 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 Externalresource Resource
Get an existing Externalresource 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?: ExternalresourceState, opts?: CustomResourceOptions): Externalresource
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
category: Optional[int] = None,
comments: Optional[str] = None,
interface: Optional[str] = None,
interface_select_method: Optional[str] = None,
name: Optional[str] = None,
password: Optional[str] = None,
refresh_rate: Optional[int] = None,
resource: Optional[str] = None,
server_identity_check: Optional[str] = None,
source_ip: Optional[str] = None,
status: Optional[str] = None,
type: Optional[str] = None,
update_method: Optional[str] = None,
user_agent: Optional[str] = None,
username: Optional[str] = None,
uuid: Optional[str] = None,
vdomparam: Optional[str] = None) -> Externalresource
func GetExternalresource(ctx *Context, name string, id IDInput, state *ExternalresourceState, opts ...ResourceOption) (*Externalresource, error)
public static Externalresource Get(string name, Input<string> id, ExternalresourceState? state, CustomResourceOptions? opts = null)
public static Externalresource get(String name, Output<String> id, ExternalresourceState state, CustomResourceOptions options)
Resource lookup is not supported in YAML
- 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.
- Category int
- User resource category.
- Comments string
- Comment.
- Interface string
- Specify outgoing interface to reach server.
- Interface
Select stringMethod - Specify how to select outgoing interface to reach server. Valid values:
auto
,sdwan
,specify
. - Name string
- External resource name.
- Password string
- HTTP basic authentication password.
- Refresh
Rate int - Time interval to refresh external resource (1 - 43200 min, default = 5 min).
- Resource string
- URI of external resource.
- Server
Identity stringCheck - Certificate verification option. Valid values:
none
,basic
,full
. - Source
Ip string - Source IPv4 address used to communicate with server.
- Status string
- Enable/disable user resource. Valid values:
enable
,disable
. - Type string
- User resource type.
- Update
Method string - External resource update method. Valid values:
feed
,push
. - User
Agent string - HTTP User-Agent header (default = 'curl/7.58.0').
- Username string
- HTTP basic authentication user name.
- Uuid string
- Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
- Vdomparam string
- Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
- Category int
- User resource category.
- Comments string
- Comment.
- Interface string
- Specify outgoing interface to reach server.
- Interface
Select stringMethod - Specify how to select outgoing interface to reach server. Valid values:
auto
,sdwan
,specify
. - Name string
- External resource name.
- Password string
- HTTP basic authentication password.
- Refresh
Rate int - Time interval to refresh external resource (1 - 43200 min, default = 5 min).
- Resource string
- URI of external resource.
- Server
Identity stringCheck - Certificate verification option. Valid values:
none
,basic
,full
. - Source
Ip string - Source IPv4 address used to communicate with server.
- Status string
- Enable/disable user resource. Valid values:
enable
,disable
. - Type string
- User resource type.
- Update
Method string - External resource update method. Valid values:
feed
,push
. - User
Agent string - HTTP User-Agent header (default = 'curl/7.58.0').
- Username string
- HTTP basic authentication user name.
- Uuid string
- Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
- Vdomparam string
- Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
- category Integer
- User resource category.
- comments String
- Comment.
- interface
Select StringMethod - Specify how to select outgoing interface to reach server. Valid values:
auto
,sdwan
,specify
. - interface_ String
- Specify outgoing interface to reach server.
- name String
- External resource name.
- password String
- HTTP basic authentication password.
- refresh
Rate Integer - Time interval to refresh external resource (1 - 43200 min, default = 5 min).
- resource String
- URI of external resource.
- server
Identity StringCheck - Certificate verification option. Valid values:
none
,basic
,full
. - source
Ip String - Source IPv4 address used to communicate with server.
- status String
- Enable/disable user resource. Valid values:
enable
,disable
. - type String
- User resource type.
- update
Method String - External resource update method. Valid values:
feed
,push
. - user
Agent String - HTTP User-Agent header (default = 'curl/7.58.0').
- username String
- HTTP basic authentication user name.
- uuid String
- Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
- vdomparam String
- Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
- category number
- User resource category.
- comments string
- Comment.
- interface string
- Specify outgoing interface to reach server.
- interface
Select stringMethod - Specify how to select outgoing interface to reach server. Valid values:
auto
,sdwan
,specify
. - name string
- External resource name.
- password string
- HTTP basic authentication password.
- refresh
Rate number - Time interval to refresh external resource (1 - 43200 min, default = 5 min).
- resource string
- URI of external resource.
- server
Identity stringCheck - Certificate verification option. Valid values:
none
,basic
,full
. - source
Ip string - Source IPv4 address used to communicate with server.
- status string
- Enable/disable user resource. Valid values:
enable
,disable
. - type string
- User resource type.
- update
Method string - External resource update method. Valid values:
feed
,push
. - user
Agent string - HTTP User-Agent header (default = 'curl/7.58.0').
- username string
- HTTP basic authentication user name.
- uuid string
- Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
- vdomparam string
- Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
- category int
- User resource category.
- comments str
- Comment.
- interface str
- Specify outgoing interface to reach server.
- interface_
select_ strmethod - Specify how to select outgoing interface to reach server. Valid values:
auto
,sdwan
,specify
. - name str
- External resource name.
- password str
- HTTP basic authentication password.
- refresh_
rate int - Time interval to refresh external resource (1 - 43200 min, default = 5 min).
- resource str
- URI of external resource.
- server_
identity_ strcheck - Certificate verification option. Valid values:
none
,basic
,full
. - source_
ip str - Source IPv4 address used to communicate with server.
- status str
- Enable/disable user resource. Valid values:
enable
,disable
. - type str
- User resource type.
- update_
method str - External resource update method. Valid values:
feed
,push
. - user_
agent str - HTTP User-Agent header (default = 'curl/7.58.0').
- username str
- HTTP basic authentication user name.
- uuid str
- Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
- vdomparam str
- Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
- category Number
- User resource category.
- comments String
- Comment.
- interface String
- Specify outgoing interface to reach server.
- interface
Select StringMethod - Specify how to select outgoing interface to reach server. Valid values:
auto
,sdwan
,specify
. - name String
- External resource name.
- password String
- HTTP basic authentication password.
- refresh
Rate Number - Time interval to refresh external resource (1 - 43200 min, default = 5 min).
- resource String
- URI of external resource.
- server
Identity StringCheck - Certificate verification option. Valid values:
none
,basic
,full
. - source
Ip String - Source IPv4 address used to communicate with server.
- status String
- Enable/disable user resource. Valid values:
enable
,disable
. - type String
- User resource type.
- update
Method String - External resource update method. Valid values:
feed
,push
. - user
Agent String - HTTP User-Agent header (default = 'curl/7.58.0').
- username String
- HTTP basic authentication user name.
- uuid String
- Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
- vdomparam String
- Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
Import
System ExternalResource can be imported using any of these accepted formats:
$ pulumi import fortios:system/externalresource:Externalresource labelname {{name}}
If you do not want to import arguments of block:
$ export “FORTIOS_IMPORT_TABLE”=“false”
$ pulumi import fortios:system/externalresource:Externalresource labelname {{name}}
$ unset “FORTIOS_IMPORT_TABLE”
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- fortios pulumiverse/pulumi-fortios
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
fortios
Terraform Provider.