1. Packages
  2. Fortios
  3. API Docs
  4. system
  5. Externalresource
Fortios v0.0.6 published on Tuesday, Jul 9, 2024 by pulumiverse

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",
});
Copy
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")
Copy
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
	})
}
Copy
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",
    });

});
Copy
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());

    }
}
Copy
resources:
  trname:
    type: fortios:system:Externalresource
    properties:
      category: 199
      refreshRate: 5
      resource: https://tmpxxxxx.com
      status: enable
      type: category
Copy

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 This property is required. string
The unique name of the resource.
args This property is required. ExternalresourceArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. 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 This property is required. string
The unique name of the resource.
args This property is required. ExternalresourceArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. ExternalresourceArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. 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",
});
Copy
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"),
})
Copy
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());
Copy
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")
Copy
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",
});
Copy
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
Copy

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

In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

The Externalresource resource accepts the following input properties:

RefreshRate This property is required. int
Time interval to refresh external resource (1 - 43200 min, default = 5 min).
Resource This property is required. string
URI of external resource.
Category int
User resource category.
Comments string
Comment.
Interface string
Specify outgoing interface to reach server.
InterfaceSelectMethod string
Specify how to select outgoing interface to reach server. Valid values: auto, sdwan, specify.
Name Changes to this property will trigger replacement. string
External resource name.
Password string
HTTP basic authentication password.
ServerIdentityCheck string
Certificate verification option. Valid values: none, basic, full.
SourceIp string
Source IPv4 address used to communicate with server.
Status string
Enable/disable user resource. Valid values: enable, disable.
Type string
User resource type.
UpdateMethod string
External resource update method. Valid values: feed, push.
UserAgent 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 Changes to this property will trigger replacement. 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.
RefreshRate This property is required. int
Time interval to refresh external resource (1 - 43200 min, default = 5 min).
Resource This property is required. string
URI of external resource.
Category int
User resource category.
Comments string
Comment.
Interface string
Specify outgoing interface to reach server.
InterfaceSelectMethod string
Specify how to select outgoing interface to reach server. Valid values: auto, sdwan, specify.
Name Changes to this property will trigger replacement. string
External resource name.
Password string
HTTP basic authentication password.
ServerIdentityCheck string
Certificate verification option. Valid values: none, basic, full.
SourceIp string
Source IPv4 address used to communicate with server.
Status string
Enable/disable user resource. Valid values: enable, disable.
Type string
User resource type.
UpdateMethod string
External resource update method. Valid values: feed, push.
UserAgent 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 Changes to this property will trigger replacement. 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.
refreshRate This property is required. Integer
Time interval to refresh external resource (1 - 43200 min, default = 5 min).
resource This property is required. String
URI of external resource.
category Integer
User resource category.
comments String
Comment.
interfaceSelectMethod String
Specify how to select outgoing interface to reach server. Valid values: auto, sdwan, specify.
interface_ String
Specify outgoing interface to reach server.
name Changes to this property will trigger replacement. String
External resource name.
password String
HTTP basic authentication password.
serverIdentityCheck String
Certificate verification option. Valid values: none, basic, full.
sourceIp String
Source IPv4 address used to communicate with server.
status String
Enable/disable user resource. Valid values: enable, disable.
type String
User resource type.
updateMethod String
External resource update method. Valid values: feed, push.
userAgent 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 Changes to this property will trigger replacement. 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.
refreshRate This property is required. number
Time interval to refresh external resource (1 - 43200 min, default = 5 min).
resource This property is required. string
URI of external resource.
category number
User resource category.
comments string
Comment.
interface string
Specify outgoing interface to reach server.
interfaceSelectMethod string
Specify how to select outgoing interface to reach server. Valid values: auto, sdwan, specify.
name Changes to this property will trigger replacement. string
External resource name.
password string
HTTP basic authentication password.
serverIdentityCheck string
Certificate verification option. Valid values: none, basic, full.
sourceIp string
Source IPv4 address used to communicate with server.
status string
Enable/disable user resource. Valid values: enable, disable.
type string
User resource type.
updateMethod string
External resource update method. Valid values: feed, push.
userAgent 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 Changes to this property will trigger replacement. 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 This property is required. int
Time interval to refresh external resource (1 - 43200 min, default = 5 min).
resource This property is required. str
URI of external resource.
category int
User resource category.
comments str
Comment.
interface str
Specify outgoing interface to reach server.
interface_select_method str
Specify how to select outgoing interface to reach server. Valid values: auto, sdwan, specify.
name Changes to this property will trigger replacement. str
External resource name.
password str
HTTP basic authentication password.
server_identity_check str
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 Changes to this property will trigger replacement. 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.
refreshRate This property is required. Number
Time interval to refresh external resource (1 - 43200 min, default = 5 min).
resource This property is required. String
URI of external resource.
category Number
User resource category.
comments String
Comment.
interface String
Specify outgoing interface to reach server.
interfaceSelectMethod String
Specify how to select outgoing interface to reach server. Valid values: auto, sdwan, specify.
name Changes to this property will trigger replacement. String
External resource name.
password String
HTTP basic authentication password.
serverIdentityCheck String
Certificate verification option. Valid values: none, basic, full.
sourceIp String
Source IPv4 address used to communicate with server.
status String
Enable/disable user resource. Valid values: enable, disable.
type String
User resource type.
updateMethod String
External resource update method. Valid values: feed, push.
userAgent 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 Changes to this property will trigger replacement. 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)
resources:  _:    type: fortios:system:Externalresource    get:      id: ${id}
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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.
The following state arguments are supported:
Category int
User resource category.
Comments string
Comment.
Interface string
Specify outgoing interface to reach server.
InterfaceSelectMethod string
Specify how to select outgoing interface to reach server. Valid values: auto, sdwan, specify.
Name Changes to this property will trigger replacement. string
External resource name.
Password string
HTTP basic authentication password.
RefreshRate int
Time interval to refresh external resource (1 - 43200 min, default = 5 min).
Resource string
URI of external resource.
ServerIdentityCheck string
Certificate verification option. Valid values: none, basic, full.
SourceIp string
Source IPv4 address used to communicate with server.
Status string
Enable/disable user resource. Valid values: enable, disable.
Type string
User resource type.
UpdateMethod string
External resource update method. Valid values: feed, push.
UserAgent 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 Changes to this property will trigger replacement. 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.
InterfaceSelectMethod string
Specify how to select outgoing interface to reach server. Valid values: auto, sdwan, specify.
Name Changes to this property will trigger replacement. string
External resource name.
Password string
HTTP basic authentication password.
RefreshRate int
Time interval to refresh external resource (1 - 43200 min, default = 5 min).
Resource string
URI of external resource.
ServerIdentityCheck string
Certificate verification option. Valid values: none, basic, full.
SourceIp string
Source IPv4 address used to communicate with server.
Status string
Enable/disable user resource. Valid values: enable, disable.
Type string
User resource type.
UpdateMethod string
External resource update method. Valid values: feed, push.
UserAgent 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 Changes to this property will trigger replacement. 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.
interfaceSelectMethod String
Specify how to select outgoing interface to reach server. Valid values: auto, sdwan, specify.
interface_ String
Specify outgoing interface to reach server.
name Changes to this property will trigger replacement. String
External resource name.
password String
HTTP basic authentication password.
refreshRate Integer
Time interval to refresh external resource (1 - 43200 min, default = 5 min).
resource String
URI of external resource.
serverIdentityCheck String
Certificate verification option. Valid values: none, basic, full.
sourceIp String
Source IPv4 address used to communicate with server.
status String
Enable/disable user resource. Valid values: enable, disable.
type String
User resource type.
updateMethod String
External resource update method. Valid values: feed, push.
userAgent 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 Changes to this property will trigger replacement. 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.
interfaceSelectMethod string
Specify how to select outgoing interface to reach server. Valid values: auto, sdwan, specify.
name Changes to this property will trigger replacement. string
External resource name.
password string
HTTP basic authentication password.
refreshRate number
Time interval to refresh external resource (1 - 43200 min, default = 5 min).
resource string
URI of external resource.
serverIdentityCheck string
Certificate verification option. Valid values: none, basic, full.
sourceIp string
Source IPv4 address used to communicate with server.
status string
Enable/disable user resource. Valid values: enable, disable.
type string
User resource type.
updateMethod string
External resource update method. Valid values: feed, push.
userAgent 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 Changes to this property will trigger replacement. 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_method str
Specify how to select outgoing interface to reach server. Valid values: auto, sdwan, specify.
name Changes to this property will trigger replacement. 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_check str
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 Changes to this property will trigger replacement. 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.
interfaceSelectMethod String
Specify how to select outgoing interface to reach server. Valid values: auto, sdwan, specify.
name Changes to this property will trigger replacement. String
External resource name.
password String
HTTP basic authentication password.
refreshRate Number
Time interval to refresh external resource (1 - 43200 min, default = 5 min).
resource String
URI of external resource.
serverIdentityCheck String
Certificate verification option. Valid values: none, basic, full.
sourceIp String
Source IPv4 address used to communicate with server.
status String
Enable/disable user resource. Valid values: enable, disable.
type String
User resource type.
updateMethod String
External resource update method. Valid values: feed, push.
userAgent 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 Changes to this property will trigger replacement. 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}}
Copy

If you do not want to import arguments of block:

$ export “FORTIOS_IMPORT_TABLE”=“false”

$ pulumi import fortios:system/externalresource:Externalresource labelname {{name}}
Copy

$ 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.