1. Packages
  2. Fortimanager Provider
  3. API Docs
  4. ObjectFirewallSslsshprofileSslexempt
fortimanager 1.14.0 published on Tuesday, Apr 15, 2025 by fortinetdev

fortimanager.ObjectFirewallSslsshprofileSslexempt

Explore with Pulumi AI

Servers to exempt from SSL inspection.

This resource is a sub resource for variable ssl_exempt of resource fortimanager.ObjectFirewallSslsshprofile. 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 trnameObjectFirewallSslsshprofile = new fortimanager.ObjectFirewallSslsshprofile("trnameObjectFirewallSslsshprofile", {});
const trnameObjectFirewallSslsshprofileSslexempt = new fortimanager.ObjectFirewallSslsshprofileSslexempt("trnameObjectFirewallSslsshprofileSslexempt", {
    sslSshProfile: trnameObjectFirewallSslsshprofile.name,
    address: "FABRIC_DEVICE",
    fosid: 4,
    type: "address",
}, {
    dependsOn: [trnameObjectFirewallSslsshprofile],
});
Copy
import pulumi
import pulumi_fortimanager as fortimanager

trname_object_firewall_sslsshprofile = fortimanager.ObjectFirewallSslsshprofile("trnameObjectFirewallSslsshprofile")
trname_object_firewall_sslsshprofile_sslexempt = fortimanager.ObjectFirewallSslsshprofileSslexempt("trnameObjectFirewallSslsshprofileSslexempt",
    ssl_ssh_profile=trname_object_firewall_sslsshprofile.name,
    address="FABRIC_DEVICE",
    fosid=4,
    type="address",
    opts = pulumi.ResourceOptions(depends_on=[trname_object_firewall_sslsshprofile]))
Copy
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 {
		trnameObjectFirewallSslsshprofile, err := fortimanager.NewObjectFirewallSslsshprofile(ctx, "trnameObjectFirewallSslsshprofile", nil)
		if err != nil {
			return err
		}
		_, err = fortimanager.NewObjectFirewallSslsshprofileSslexempt(ctx, "trnameObjectFirewallSslsshprofileSslexempt", &fortimanager.ObjectFirewallSslsshprofileSslexemptArgs{
			SslSshProfile: trnameObjectFirewallSslsshprofile.Name,
			Address:       pulumi.String("FABRIC_DEVICE"),
			Fosid:         pulumi.Float64(4),
			Type:          pulumi.String("address"),
		}, pulumi.DependsOn([]pulumi.Resource{
			trnameObjectFirewallSslsshprofile,
		}))
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Fortimanager = Pulumi.Fortimanager;

return await Deployment.RunAsync(() => 
{
    var trnameObjectFirewallSslsshprofile = new Fortimanager.ObjectFirewallSslsshprofile("trnameObjectFirewallSslsshprofile");

    var trnameObjectFirewallSslsshprofileSslexempt = new Fortimanager.ObjectFirewallSslsshprofileSslexempt("trnameObjectFirewallSslsshprofileSslexempt", new()
    {
        SslSshProfile = trnameObjectFirewallSslsshprofile.Name,
        Address = "FABRIC_DEVICE",
        Fosid = 4,
        Type = "address",
    }, new CustomResourceOptions
    {
        DependsOn =
        {
            trnameObjectFirewallSslsshprofile,
        },
    });

});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.fortimanager.ObjectFirewallSslsshprofile;
import com.pulumi.fortimanager.ObjectFirewallSslsshprofileSslexempt;
import com.pulumi.fortimanager.ObjectFirewallSslsshprofileSslexemptArgs;
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 trnameObjectFirewallSslsshprofile = new ObjectFirewallSslsshprofile("trnameObjectFirewallSslsshprofile");

        var trnameObjectFirewallSslsshprofileSslexempt = new ObjectFirewallSslsshprofileSslexempt("trnameObjectFirewallSslsshprofileSslexempt", ObjectFirewallSslsshprofileSslexemptArgs.builder()
            .sslSshProfile(trnameObjectFirewallSslsshprofile.name())
            .address("FABRIC_DEVICE")
            .fosid(4)
            .type("address")
            .build(), CustomResourceOptions.builder()
                .dependsOn(trnameObjectFirewallSslsshprofile)
                .build());

    }
}
Copy
resources:
  trnameObjectFirewallSslsshprofileSslexempt:
    type: fortimanager:ObjectFirewallSslsshprofileSslexempt
    properties:
      sslSshProfile: ${trnameObjectFirewallSslsshprofile.name}
      address: FABRIC_DEVICE
      fosid: 4
      type: address
    options:
      dependsOn:
        - ${trnameObjectFirewallSslsshprofile}
  trnameObjectFirewallSslsshprofile:
    type: fortimanager:ObjectFirewallSslsshprofile
Copy

Create ObjectFirewallSslsshprofileSslexempt Resource

Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

Constructor syntax

new ObjectFirewallSslsshprofileSslexempt(name: string, args: ObjectFirewallSslsshprofileSslexemptArgs, opts?: CustomResourceOptions);
@overload
def ObjectFirewallSslsshprofileSslexempt(resource_name: str,
                                         args: ObjectFirewallSslsshprofileSslexemptArgs,
                                         opts: Optional[ResourceOptions] = None)

@overload
def ObjectFirewallSslsshprofileSslexempt(resource_name: str,
                                         opts: Optional[ResourceOptions] = None,
                                         ssl_ssh_profile: Optional[str] = None,
                                         address: Optional[str] = None,
                                         address6: Optional[str] = None,
                                         adom: Optional[str] = None,
                                         fortiguard_categories: Optional[Sequence[str]] = None,
                                         fosid: Optional[float] = None,
                                         object_firewall_sslsshprofile_sslexempt_id: Optional[str] = None,
                                         regex: Optional[str] = None,
                                         scopetype: Optional[str] = None,
                                         type: Optional[str] = None,
                                         wildcard_fqdns: Optional[Sequence[str]] = None)
func NewObjectFirewallSslsshprofileSslexempt(ctx *Context, name string, args ObjectFirewallSslsshprofileSslexemptArgs, opts ...ResourceOption) (*ObjectFirewallSslsshprofileSslexempt, error)
public ObjectFirewallSslsshprofileSslexempt(string name, ObjectFirewallSslsshprofileSslexemptArgs args, CustomResourceOptions? opts = null)
public ObjectFirewallSslsshprofileSslexempt(String name, ObjectFirewallSslsshprofileSslexemptArgs args)
public ObjectFirewallSslsshprofileSslexempt(String name, ObjectFirewallSslsshprofileSslexemptArgs args, CustomResourceOptions options)
type: fortimanager:ObjectFirewallSslsshprofileSslexempt
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. ObjectFirewallSslsshprofileSslexemptArgs
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. ObjectFirewallSslsshprofileSslexemptArgs
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. ObjectFirewallSslsshprofileSslexemptArgs
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. ObjectFirewallSslsshprofileSslexemptArgs
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. ObjectFirewallSslsshprofileSslexemptArgs
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 objectFirewallSslsshprofileSslexemptResource = new Fortimanager.ObjectFirewallSslsshprofileSslexempt("objectFirewallSslsshprofileSslexemptResource", new()
{
    SslSshProfile = "string",
    Address = "string",
    Address6 = "string",
    Adom = "string",
    FortiguardCategories = new[]
    {
        "string",
    },
    Fosid = 0,
    ObjectFirewallSslsshprofileSslexemptId = "string",
    Regex = "string",
    Scopetype = "string",
    Type = "string",
    WildcardFqdns = new[]
    {
        "string",
    },
});
Copy
example, err := fortimanager.NewObjectFirewallSslsshprofileSslexempt(ctx, "objectFirewallSslsshprofileSslexemptResource", &fortimanager.ObjectFirewallSslsshprofileSslexemptArgs{
SslSshProfile: pulumi.String("string"),
Address: pulumi.String("string"),
Address6: pulumi.String("string"),
Adom: pulumi.String("string"),
FortiguardCategories: pulumi.StringArray{
pulumi.String("string"),
},
Fosid: pulumi.Float64(0),
ObjectFirewallSslsshprofileSslexemptId: pulumi.String("string"),
Regex: pulumi.String("string"),
Scopetype: pulumi.String("string"),
Type: pulumi.String("string"),
WildcardFqdns: pulumi.StringArray{
pulumi.String("string"),
},
})
Copy
var objectFirewallSslsshprofileSslexemptResource = new ObjectFirewallSslsshprofileSslexempt("objectFirewallSslsshprofileSslexemptResource", ObjectFirewallSslsshprofileSslexemptArgs.builder()
    .sslSshProfile("string")
    .address("string")
    .address6("string")
    .adom("string")
    .fortiguardCategories("string")
    .fosid(0)
    .objectFirewallSslsshprofileSslexemptId("string")
    .regex("string")
    .scopetype("string")
    .type("string")
    .wildcardFqdns("string")
    .build());
Copy
object_firewall_sslsshprofile_sslexempt_resource = fortimanager.ObjectFirewallSslsshprofileSslexempt("objectFirewallSslsshprofileSslexemptResource",
    ssl_ssh_profile="string",
    address="string",
    address6="string",
    adom="string",
    fortiguard_categories=["string"],
    fosid=0,
    object_firewall_sslsshprofile_sslexempt_id="string",
    regex="string",
    scopetype="string",
    type="string",
    wildcard_fqdns=["string"])
Copy
const objectFirewallSslsshprofileSslexemptResource = new fortimanager.ObjectFirewallSslsshprofileSslexempt("objectFirewallSslsshprofileSslexemptResource", {
    sslSshProfile: "string",
    address: "string",
    address6: "string",
    adom: "string",
    fortiguardCategories: ["string"],
    fosid: 0,
    objectFirewallSslsshprofileSslexemptId: "string",
    regex: "string",
    scopetype: "string",
    type: "string",
    wildcardFqdns: ["string"],
});
Copy
type: fortimanager:ObjectFirewallSslsshprofileSslexempt
properties:
    address: string
    address6: string
    adom: string
    fortiguardCategories:
        - string
    fosid: 0
    objectFirewallSslsshprofileSslexemptId: string
    regex: string
    scopetype: string
    sslSshProfile: string
    type: string
    wildcardFqdns:
        - string
Copy

ObjectFirewallSslsshprofileSslexempt 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 ObjectFirewallSslsshprofileSslexempt resource accepts the following input properties:

SslSshProfile This property is required. string
Ssl Ssh Profile.
Address string
IPv4 address object.
Address6 string
IPv6 address object.
Adom string
Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
FortiguardCategories List<string>
FortiGuard category ID.
Fosid double
ID number.
ObjectFirewallSslsshprofileSslexemptId string
an identifier for the resource with format {{fosid}}.
Regex string
Exempt servers by regular expression.
Scopetype string
The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
Type string
Type of address object (IPv4 or IPv6) or FortiGuard category. Valid values: fortiguard-category, address, address6, wildcard-fqdn, regex.
WildcardFqdns List<string>
Exempt servers by wildcard FQDN.
SslSshProfile This property is required. string
Ssl Ssh Profile.
Address string
IPv4 address object.
Address6 string
IPv6 address object.
Adom string
Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
FortiguardCategories []string
FortiGuard category ID.
Fosid float64
ID number.
ObjectFirewallSslsshprofileSslexemptId string
an identifier for the resource with format {{fosid}}.
Regex string
Exempt servers by regular expression.
Scopetype string
The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
Type string
Type of address object (IPv4 or IPv6) or FortiGuard category. Valid values: fortiguard-category, address, address6, wildcard-fqdn, regex.
WildcardFqdns []string
Exempt servers by wildcard FQDN.
sslSshProfile This property is required. String
Ssl Ssh Profile.
address String
IPv4 address object.
address6 String
IPv6 address object.
adom String
Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
fortiguardCategories List<String>
FortiGuard category ID.
fosid Double
ID number.
objectFirewallSslsshprofileSslexemptId String
an identifier for the resource with format {{fosid}}.
regex String
Exempt servers by regular expression.
scopetype String
The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
type String
Type of address object (IPv4 or IPv6) or FortiGuard category. Valid values: fortiguard-category, address, address6, wildcard-fqdn, regex.
wildcardFqdns List<String>
Exempt servers by wildcard FQDN.
sslSshProfile This property is required. string
Ssl Ssh Profile.
address string
IPv4 address object.
address6 string
IPv6 address object.
adom string
Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
fortiguardCategories string[]
FortiGuard category ID.
fosid number
ID number.
objectFirewallSslsshprofileSslexemptId string
an identifier for the resource with format {{fosid}}.
regex string
Exempt servers by regular expression.
scopetype string
The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
type string
Type of address object (IPv4 or IPv6) or FortiGuard category. Valid values: fortiguard-category, address, address6, wildcard-fqdn, regex.
wildcardFqdns string[]
Exempt servers by wildcard FQDN.
ssl_ssh_profile This property is required. str
Ssl Ssh Profile.
address str
IPv4 address object.
address6 str
IPv6 address object.
adom str
Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
fortiguard_categories Sequence[str]
FortiGuard category ID.
fosid float
ID number.
object_firewall_sslsshprofile_sslexempt_id str
an identifier for the resource with format {{fosid}}.
regex str
Exempt servers by regular expression.
scopetype str
The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
type str
Type of address object (IPv4 or IPv6) or FortiGuard category. Valid values: fortiguard-category, address, address6, wildcard-fqdn, regex.
wildcard_fqdns Sequence[str]
Exempt servers by wildcard FQDN.
sslSshProfile This property is required. String
Ssl Ssh Profile.
address String
IPv4 address object.
address6 String
IPv6 address object.
adom String
Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
fortiguardCategories List<String>
FortiGuard category ID.
fosid Number
ID number.
objectFirewallSslsshprofileSslexemptId String
an identifier for the resource with format {{fosid}}.
regex String
Exempt servers by regular expression.
scopetype String
The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
type String
Type of address object (IPv4 or IPv6) or FortiGuard category. Valid values: fortiguard-category, address, address6, wildcard-fqdn, regex.
wildcardFqdns List<String>
Exempt servers by wildcard FQDN.

Outputs

All input properties are implicitly available as output properties. Additionally, the ObjectFirewallSslsshprofileSslexempt 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 ObjectFirewallSslsshprofileSslexempt Resource

Get an existing ObjectFirewallSslsshprofileSslexempt 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?: ObjectFirewallSslsshprofileSslexemptState, opts?: CustomResourceOptions): ObjectFirewallSslsshprofileSslexempt
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        address: Optional[str] = None,
        address6: Optional[str] = None,
        adom: Optional[str] = None,
        fortiguard_categories: Optional[Sequence[str]] = None,
        fosid: Optional[float] = None,
        object_firewall_sslsshprofile_sslexempt_id: Optional[str] = None,
        regex: Optional[str] = None,
        scopetype: Optional[str] = None,
        ssl_ssh_profile: Optional[str] = None,
        type: Optional[str] = None,
        wildcard_fqdns: Optional[Sequence[str]] = None) -> ObjectFirewallSslsshprofileSslexempt
func GetObjectFirewallSslsshprofileSslexempt(ctx *Context, name string, id IDInput, state *ObjectFirewallSslsshprofileSslexemptState, opts ...ResourceOption) (*ObjectFirewallSslsshprofileSslexempt, error)
public static ObjectFirewallSslsshprofileSslexempt Get(string name, Input<string> id, ObjectFirewallSslsshprofileSslexemptState? state, CustomResourceOptions? opts = null)
public static ObjectFirewallSslsshprofileSslexempt get(String name, Output<String> id, ObjectFirewallSslsshprofileSslexemptState state, CustomResourceOptions options)
resources:  _:    type: fortimanager:ObjectFirewallSslsshprofileSslexempt    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:
Address string
IPv4 address object.
Address6 string
IPv6 address object.
Adom string
Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
FortiguardCategories List<string>
FortiGuard category ID.
Fosid double
ID number.
ObjectFirewallSslsshprofileSslexemptId string
an identifier for the resource with format {{fosid}}.
Regex string
Exempt servers by regular expression.
Scopetype string
The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
SslSshProfile string
Ssl Ssh Profile.
Type string
Type of address object (IPv4 or IPv6) or FortiGuard category. Valid values: fortiguard-category, address, address6, wildcard-fqdn, regex.
WildcardFqdns List<string>
Exempt servers by wildcard FQDN.
Address string
IPv4 address object.
Address6 string
IPv6 address object.
Adom string
Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
FortiguardCategories []string
FortiGuard category ID.
Fosid float64
ID number.
ObjectFirewallSslsshprofileSslexemptId string
an identifier for the resource with format {{fosid}}.
Regex string
Exempt servers by regular expression.
Scopetype string
The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
SslSshProfile string
Ssl Ssh Profile.
Type string
Type of address object (IPv4 or IPv6) or FortiGuard category. Valid values: fortiguard-category, address, address6, wildcard-fqdn, regex.
WildcardFqdns []string
Exempt servers by wildcard FQDN.
address String
IPv4 address object.
address6 String
IPv6 address object.
adom String
Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
fortiguardCategories List<String>
FortiGuard category ID.
fosid Double
ID number.
objectFirewallSslsshprofileSslexemptId String
an identifier for the resource with format {{fosid}}.
regex String
Exempt servers by regular expression.
scopetype String
The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
sslSshProfile String
Ssl Ssh Profile.
type String
Type of address object (IPv4 or IPv6) or FortiGuard category. Valid values: fortiguard-category, address, address6, wildcard-fqdn, regex.
wildcardFqdns List<String>
Exempt servers by wildcard FQDN.
address string
IPv4 address object.
address6 string
IPv6 address object.
adom string
Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
fortiguardCategories string[]
FortiGuard category ID.
fosid number
ID number.
objectFirewallSslsshprofileSslexemptId string
an identifier for the resource with format {{fosid}}.
regex string
Exempt servers by regular expression.
scopetype string
The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
sslSshProfile string
Ssl Ssh Profile.
type string
Type of address object (IPv4 or IPv6) or FortiGuard category. Valid values: fortiguard-category, address, address6, wildcard-fqdn, regex.
wildcardFqdns string[]
Exempt servers by wildcard FQDN.
address str
IPv4 address object.
address6 str
IPv6 address object.
adom str
Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
fortiguard_categories Sequence[str]
FortiGuard category ID.
fosid float
ID number.
object_firewall_sslsshprofile_sslexempt_id str
an identifier for the resource with format {{fosid}}.
regex str
Exempt servers by regular expression.
scopetype str
The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
ssl_ssh_profile str
Ssl Ssh Profile.
type str
Type of address object (IPv4 or IPv6) or FortiGuard category. Valid values: fortiguard-category, address, address6, wildcard-fqdn, regex.
wildcard_fqdns Sequence[str]
Exempt servers by wildcard FQDN.
address String
IPv4 address object.
address6 String
IPv6 address object.
adom String
Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
fortiguardCategories List<String>
FortiGuard category ID.
fosid Number
ID number.
objectFirewallSslsshprofileSslexemptId String
an identifier for the resource with format {{fosid}}.
regex String
Exempt servers by regular expression.
scopetype String
The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
sslSshProfile String
Ssl Ssh Profile.
type String
Type of address object (IPv4 or IPv6) or FortiGuard category. Valid values: fortiguard-category, address, address6, wildcard-fqdn, regex.
wildcardFqdns List<String>
Exempt servers by wildcard FQDN.

Import

ObjectFirewall SslSshProfileSslExempt can be imported using any of these accepted formats:

Set import_options = [“ssl_ssh_profile=YOUR_VALUE”] in the provider section.

$ export “FORTIMANAGER_IMPORT_TABLE”=“true”

$ pulumi import fortimanager:index/objectFirewallSslsshprofileSslexempt:ObjectFirewallSslsshprofileSslexempt labelname {{fosid}}
Copy

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