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

fortimanager.ObjectFirewallSslsshprofileSsh

Explore with Pulumi AI

Configure SSH options.

This resource is a sub resource for variable ssh 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 trnameObjectFirewallSslsshprofileSsh = new fortimanager.ObjectFirewallSslsshprofileSsh("trnameObjectFirewallSslsshprofileSsh", {
    sslSshProfile: trnameObjectFirewallSslsshprofile.name,
    ports: [34],
    proxyAfterTcpHandshake: "enable",
}, {
    dependsOn: [trnameObjectFirewallSslsshprofile],
});
Copy
import pulumi
import pulumi_fortimanager as fortimanager

trname_object_firewall_sslsshprofile = fortimanager.ObjectFirewallSslsshprofile("trnameObjectFirewallSslsshprofile")
trname_object_firewall_sslsshprofile_ssh = fortimanager.ObjectFirewallSslsshprofileSsh("trnameObjectFirewallSslsshprofileSsh",
    ssl_ssh_profile=trname_object_firewall_sslsshprofile.name,
    ports=[34],
    proxy_after_tcp_handshake="enable",
    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.NewObjectFirewallSslsshprofileSsh(ctx, "trnameObjectFirewallSslsshprofileSsh", &fortimanager.ObjectFirewallSslsshprofileSshArgs{
			SslSshProfile: trnameObjectFirewallSslsshprofile.Name,
			Ports: pulumi.Float64Array{
				pulumi.Float64(34),
			},
			ProxyAfterTcpHandshake: pulumi.String("enable"),
		}, 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 trnameObjectFirewallSslsshprofileSsh = new Fortimanager.ObjectFirewallSslsshprofileSsh("trnameObjectFirewallSslsshprofileSsh", new()
    {
        SslSshProfile = trnameObjectFirewallSslsshprofile.Name,
        Ports = new[]
        {
            34,
        },
        ProxyAfterTcpHandshake = "enable",
    }, 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.ObjectFirewallSslsshprofileSsh;
import com.pulumi.fortimanager.ObjectFirewallSslsshprofileSshArgs;
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 trnameObjectFirewallSslsshprofileSsh = new ObjectFirewallSslsshprofileSsh("trnameObjectFirewallSslsshprofileSsh", ObjectFirewallSslsshprofileSshArgs.builder()
            .sslSshProfile(trnameObjectFirewallSslsshprofile.name())
            .ports(34)
            .proxyAfterTcpHandshake("enable")
            .build(), CustomResourceOptions.builder()
                .dependsOn(trnameObjectFirewallSslsshprofile)
                .build());

    }
}
Copy
resources:
  trnameObjectFirewallSslsshprofileSsh:
    type: fortimanager:ObjectFirewallSslsshprofileSsh
    properties:
      sslSshProfile: ${trnameObjectFirewallSslsshprofile.name}
      ports:
        - 34
      proxyAfterTcpHandshake: enable
    options:
      dependsOn:
        - ${trnameObjectFirewallSslsshprofile}
  trnameObjectFirewallSslsshprofile:
    type: fortimanager:ObjectFirewallSslsshprofile
Copy

Create ObjectFirewallSslsshprofileSsh Resource

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

Constructor syntax

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

@overload
def ObjectFirewallSslsshprofileSsh(resource_name: str,
                                   opts: Optional[ResourceOptions] = None,
                                   ssl_ssh_profile: Optional[str] = None,
                                   adom: Optional[str] = None,
                                   inspect_all: Optional[str] = None,
                                   object_firewall_sslsshprofile_ssh_id: Optional[str] = None,
                                   ports: Optional[Sequence[float]] = None,
                                   proxy_after_tcp_handshake: Optional[str] = None,
                                   scopetype: Optional[str] = None,
                                   ssh_algorithm: Optional[str] = None,
                                   ssh_policy_check: Optional[str] = None,
                                   ssh_tun_policy_check: Optional[str] = None,
                                   status: Optional[str] = None,
                                   unsupported_version: Optional[str] = None)
func NewObjectFirewallSslsshprofileSsh(ctx *Context, name string, args ObjectFirewallSslsshprofileSshArgs, opts ...ResourceOption) (*ObjectFirewallSslsshprofileSsh, error)
public ObjectFirewallSslsshprofileSsh(string name, ObjectFirewallSslsshprofileSshArgs args, CustomResourceOptions? opts = null)
public ObjectFirewallSslsshprofileSsh(String name, ObjectFirewallSslsshprofileSshArgs args)
public ObjectFirewallSslsshprofileSsh(String name, ObjectFirewallSslsshprofileSshArgs args, CustomResourceOptions options)
type: fortimanager:ObjectFirewallSslsshprofileSsh
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. ObjectFirewallSslsshprofileSshArgs
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. ObjectFirewallSslsshprofileSshInitArgs
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. ObjectFirewallSslsshprofileSshArgs
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. ObjectFirewallSslsshprofileSshArgs
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. ObjectFirewallSslsshprofileSshArgs
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 objectFirewallSslsshprofileSshResource = new Fortimanager.ObjectFirewallSslsshprofileSsh("objectFirewallSslsshprofileSshResource", new()
{
    SslSshProfile = "string",
    Adom = "string",
    InspectAll = "string",
    ObjectFirewallSslsshprofileSshId = "string",
    Ports = new[]
    {
        0,
    },
    ProxyAfterTcpHandshake = "string",
    Scopetype = "string",
    SshAlgorithm = "string",
    SshPolicyCheck = "string",
    SshTunPolicyCheck = "string",
    Status = "string",
    UnsupportedVersion = "string",
});
Copy
example, err := fortimanager.NewObjectFirewallSslsshprofileSsh(ctx, "objectFirewallSslsshprofileSshResource", &fortimanager.ObjectFirewallSslsshprofileSshArgs{
SslSshProfile: pulumi.String("string"),
Adom: pulumi.String("string"),
InspectAll: pulumi.String("string"),
ObjectFirewallSslsshprofileSshId: pulumi.String("string"),
Ports: pulumi.Float64Array{
pulumi.Float64(0),
},
ProxyAfterTcpHandshake: pulumi.String("string"),
Scopetype: pulumi.String("string"),
SshAlgorithm: pulumi.String("string"),
SshPolicyCheck: pulumi.String("string"),
SshTunPolicyCheck: pulumi.String("string"),
Status: pulumi.String("string"),
UnsupportedVersion: pulumi.String("string"),
})
Copy
var objectFirewallSslsshprofileSshResource = new ObjectFirewallSslsshprofileSsh("objectFirewallSslsshprofileSshResource", ObjectFirewallSslsshprofileSshArgs.builder()
    .sslSshProfile("string")
    .adom("string")
    .inspectAll("string")
    .objectFirewallSslsshprofileSshId("string")
    .ports(0)
    .proxyAfterTcpHandshake("string")
    .scopetype("string")
    .sshAlgorithm("string")
    .sshPolicyCheck("string")
    .sshTunPolicyCheck("string")
    .status("string")
    .unsupportedVersion("string")
    .build());
Copy
object_firewall_sslsshprofile_ssh_resource = fortimanager.ObjectFirewallSslsshprofileSsh("objectFirewallSslsshprofileSshResource",
    ssl_ssh_profile="string",
    adom="string",
    inspect_all="string",
    object_firewall_sslsshprofile_ssh_id="string",
    ports=[0],
    proxy_after_tcp_handshake="string",
    scopetype="string",
    ssh_algorithm="string",
    ssh_policy_check="string",
    ssh_tun_policy_check="string",
    status="string",
    unsupported_version="string")
Copy
const objectFirewallSslsshprofileSshResource = new fortimanager.ObjectFirewallSslsshprofileSsh("objectFirewallSslsshprofileSshResource", {
    sslSshProfile: "string",
    adom: "string",
    inspectAll: "string",
    objectFirewallSslsshprofileSshId: "string",
    ports: [0],
    proxyAfterTcpHandshake: "string",
    scopetype: "string",
    sshAlgorithm: "string",
    sshPolicyCheck: "string",
    sshTunPolicyCheck: "string",
    status: "string",
    unsupportedVersion: "string",
});
Copy
type: fortimanager:ObjectFirewallSslsshprofileSsh
properties:
    adom: string
    inspectAll: string
    objectFirewallSslsshprofileSshId: string
    ports:
        - 0
    proxyAfterTcpHandshake: string
    scopetype: string
    sshAlgorithm: string
    sshPolicyCheck: string
    sshTunPolicyCheck: string
    sslSshProfile: string
    status: string
    unsupportedVersion: string
Copy

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

SslSshProfile This property is required. string
Ssl Ssh Profile.
Adom string
Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
InspectAll string
Level of SSL inspection. Valid values: disable, deep-inspection.
ObjectFirewallSslsshprofileSshId string
an identifier for the resource.
Ports List<double>
Ports to use for scanning (1 - 65535, default = 443).
ProxyAfterTcpHandshake string
Proxy traffic after the TCP 3-way handshake has been established (not before). Valid values: disable, enable.
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.
SshAlgorithm string
Relative strength of encryption algorithms accepted during negotiation. Valid values: compatible, high-encryption.
SshPolicyCheck string
Enable/disable SSH policy check. Valid values: disable, enable.
SshTunPolicyCheck string
Enable/disable SSH tunnel policy check. Valid values: disable, enable.
Status string
Configure protocol inspection status. Valid values: disable, deep-inspection.
UnsupportedVersion string
Action based on SSH version being unsupported. Valid values: block, bypass.
SslSshProfile This property is required. string
Ssl Ssh Profile.
Adom string
Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
InspectAll string
Level of SSL inspection. Valid values: disable, deep-inspection.
ObjectFirewallSslsshprofileSshId string
an identifier for the resource.
Ports []float64
Ports to use for scanning (1 - 65535, default = 443).
ProxyAfterTcpHandshake string
Proxy traffic after the TCP 3-way handshake has been established (not before). Valid values: disable, enable.
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.
SshAlgorithm string
Relative strength of encryption algorithms accepted during negotiation. Valid values: compatible, high-encryption.
SshPolicyCheck string
Enable/disable SSH policy check. Valid values: disable, enable.
SshTunPolicyCheck string
Enable/disable SSH tunnel policy check. Valid values: disable, enable.
Status string
Configure protocol inspection status. Valid values: disable, deep-inspection.
UnsupportedVersion string
Action based on SSH version being unsupported. Valid values: block, bypass.
sslSshProfile This property is required. String
Ssl Ssh Profile.
adom String
Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
inspectAll String
Level of SSL inspection. Valid values: disable, deep-inspection.
objectFirewallSslsshprofileSshId String
an identifier for the resource.
ports List<Double>
Ports to use for scanning (1 - 65535, default = 443).
proxyAfterTcpHandshake String
Proxy traffic after the TCP 3-way handshake has been established (not before). Valid values: disable, enable.
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.
sshAlgorithm String
Relative strength of encryption algorithms accepted during negotiation. Valid values: compatible, high-encryption.
sshPolicyCheck String
Enable/disable SSH policy check. Valid values: disable, enable.
sshTunPolicyCheck String
Enable/disable SSH tunnel policy check. Valid values: disable, enable.
status String
Configure protocol inspection status. Valid values: disable, deep-inspection.
unsupportedVersion String
Action based on SSH version being unsupported. Valid values: block, bypass.
sslSshProfile This property is required. string
Ssl Ssh Profile.
adom string
Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
inspectAll string
Level of SSL inspection. Valid values: disable, deep-inspection.
objectFirewallSslsshprofileSshId string
an identifier for the resource.
ports number[]
Ports to use for scanning (1 - 65535, default = 443).
proxyAfterTcpHandshake string
Proxy traffic after the TCP 3-way handshake has been established (not before). Valid values: disable, enable.
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.
sshAlgorithm string
Relative strength of encryption algorithms accepted during negotiation. Valid values: compatible, high-encryption.
sshPolicyCheck string
Enable/disable SSH policy check. Valid values: disable, enable.
sshTunPolicyCheck string
Enable/disable SSH tunnel policy check. Valid values: disable, enable.
status string
Configure protocol inspection status. Valid values: disable, deep-inspection.
unsupportedVersion string
Action based on SSH version being unsupported. Valid values: block, bypass.
ssl_ssh_profile This property is required. str
Ssl Ssh Profile.
adom str
Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
inspect_all str
Level of SSL inspection. Valid values: disable, deep-inspection.
object_firewall_sslsshprofile_ssh_id str
an identifier for the resource.
ports Sequence[float]
Ports to use for scanning (1 - 65535, default = 443).
proxy_after_tcp_handshake str
Proxy traffic after the TCP 3-way handshake has been established (not before). Valid values: disable, enable.
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.
ssh_algorithm str
Relative strength of encryption algorithms accepted during negotiation. Valid values: compatible, high-encryption.
ssh_policy_check str
Enable/disable SSH policy check. Valid values: disable, enable.
ssh_tun_policy_check str
Enable/disable SSH tunnel policy check. Valid values: disable, enable.
status str
Configure protocol inspection status. Valid values: disable, deep-inspection.
unsupported_version str
Action based on SSH version being unsupported. Valid values: block, bypass.
sslSshProfile This property is required. String
Ssl Ssh Profile.
adom String
Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
inspectAll String
Level of SSL inspection. Valid values: disable, deep-inspection.
objectFirewallSslsshprofileSshId String
an identifier for the resource.
ports List<Number>
Ports to use for scanning (1 - 65535, default = 443).
proxyAfterTcpHandshake String
Proxy traffic after the TCP 3-way handshake has been established (not before). Valid values: disable, enable.
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.
sshAlgorithm String
Relative strength of encryption algorithms accepted during negotiation. Valid values: compatible, high-encryption.
sshPolicyCheck String
Enable/disable SSH policy check. Valid values: disable, enable.
sshTunPolicyCheck String
Enable/disable SSH tunnel policy check. Valid values: disable, enable.
status String
Configure protocol inspection status. Valid values: disable, deep-inspection.
unsupportedVersion String
Action based on SSH version being unsupported. Valid values: block, bypass.

Outputs

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

Get an existing ObjectFirewallSslsshprofileSsh 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?: ObjectFirewallSslsshprofileSshState, opts?: CustomResourceOptions): ObjectFirewallSslsshprofileSsh
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        adom: Optional[str] = None,
        inspect_all: Optional[str] = None,
        object_firewall_sslsshprofile_ssh_id: Optional[str] = None,
        ports: Optional[Sequence[float]] = None,
        proxy_after_tcp_handshake: Optional[str] = None,
        scopetype: Optional[str] = None,
        ssh_algorithm: Optional[str] = None,
        ssh_policy_check: Optional[str] = None,
        ssh_tun_policy_check: Optional[str] = None,
        ssl_ssh_profile: Optional[str] = None,
        status: Optional[str] = None,
        unsupported_version: Optional[str] = None) -> ObjectFirewallSslsshprofileSsh
func GetObjectFirewallSslsshprofileSsh(ctx *Context, name string, id IDInput, state *ObjectFirewallSslsshprofileSshState, opts ...ResourceOption) (*ObjectFirewallSslsshprofileSsh, error)
public static ObjectFirewallSslsshprofileSsh Get(string name, Input<string> id, ObjectFirewallSslsshprofileSshState? state, CustomResourceOptions? opts = null)
public static ObjectFirewallSslsshprofileSsh get(String name, Output<String> id, ObjectFirewallSslsshprofileSshState state, CustomResourceOptions options)
resources:  _:    type: fortimanager:ObjectFirewallSslsshprofileSsh    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:
Adom string
Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
InspectAll string
Level of SSL inspection. Valid values: disable, deep-inspection.
ObjectFirewallSslsshprofileSshId string
an identifier for the resource.
Ports List<double>
Ports to use for scanning (1 - 65535, default = 443).
ProxyAfterTcpHandshake string
Proxy traffic after the TCP 3-way handshake has been established (not before). Valid values: disable, enable.
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.
SshAlgorithm string
Relative strength of encryption algorithms accepted during negotiation. Valid values: compatible, high-encryption.
SshPolicyCheck string
Enable/disable SSH policy check. Valid values: disable, enable.
SshTunPolicyCheck string
Enable/disable SSH tunnel policy check. Valid values: disable, enable.
SslSshProfile string
Ssl Ssh Profile.
Status string
Configure protocol inspection status. Valid values: disable, deep-inspection.
UnsupportedVersion string
Action based on SSH version being unsupported. Valid values: block, bypass.
Adom string
Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
InspectAll string
Level of SSL inspection. Valid values: disable, deep-inspection.
ObjectFirewallSslsshprofileSshId string
an identifier for the resource.
Ports []float64
Ports to use for scanning (1 - 65535, default = 443).
ProxyAfterTcpHandshake string
Proxy traffic after the TCP 3-way handshake has been established (not before). Valid values: disable, enable.
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.
SshAlgorithm string
Relative strength of encryption algorithms accepted during negotiation. Valid values: compatible, high-encryption.
SshPolicyCheck string
Enable/disable SSH policy check. Valid values: disable, enable.
SshTunPolicyCheck string
Enable/disable SSH tunnel policy check. Valid values: disable, enable.
SslSshProfile string
Ssl Ssh Profile.
Status string
Configure protocol inspection status. Valid values: disable, deep-inspection.
UnsupportedVersion string
Action based on SSH version being unsupported. Valid values: block, bypass.
adom String
Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
inspectAll String
Level of SSL inspection. Valid values: disable, deep-inspection.
objectFirewallSslsshprofileSshId String
an identifier for the resource.
ports List<Double>
Ports to use for scanning (1 - 65535, default = 443).
proxyAfterTcpHandshake String
Proxy traffic after the TCP 3-way handshake has been established (not before). Valid values: disable, enable.
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.
sshAlgorithm String
Relative strength of encryption algorithms accepted during negotiation. Valid values: compatible, high-encryption.
sshPolicyCheck String
Enable/disable SSH policy check. Valid values: disable, enable.
sshTunPolicyCheck String
Enable/disable SSH tunnel policy check. Valid values: disable, enable.
sslSshProfile String
Ssl Ssh Profile.
status String
Configure protocol inspection status. Valid values: disable, deep-inspection.
unsupportedVersion String
Action based on SSH version being unsupported. Valid values: block, bypass.
adom string
Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
inspectAll string
Level of SSL inspection. Valid values: disable, deep-inspection.
objectFirewallSslsshprofileSshId string
an identifier for the resource.
ports number[]
Ports to use for scanning (1 - 65535, default = 443).
proxyAfterTcpHandshake string
Proxy traffic after the TCP 3-way handshake has been established (not before). Valid values: disable, enable.
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.
sshAlgorithm string
Relative strength of encryption algorithms accepted during negotiation. Valid values: compatible, high-encryption.
sshPolicyCheck string
Enable/disable SSH policy check. Valid values: disable, enable.
sshTunPolicyCheck string
Enable/disable SSH tunnel policy check. Valid values: disable, enable.
sslSshProfile string
Ssl Ssh Profile.
status string
Configure protocol inspection status. Valid values: disable, deep-inspection.
unsupportedVersion string
Action based on SSH version being unsupported. Valid values: block, bypass.
adom str
Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
inspect_all str
Level of SSL inspection. Valid values: disable, deep-inspection.
object_firewall_sslsshprofile_ssh_id str
an identifier for the resource.
ports Sequence[float]
Ports to use for scanning (1 - 65535, default = 443).
proxy_after_tcp_handshake str
Proxy traffic after the TCP 3-way handshake has been established (not before). Valid values: disable, enable.
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.
ssh_algorithm str
Relative strength of encryption algorithms accepted during negotiation. Valid values: compatible, high-encryption.
ssh_policy_check str
Enable/disable SSH policy check. Valid values: disable, enable.
ssh_tun_policy_check str
Enable/disable SSH tunnel policy check. Valid values: disable, enable.
ssl_ssh_profile str
Ssl Ssh Profile.
status str
Configure protocol inspection status. Valid values: disable, deep-inspection.
unsupported_version str
Action based on SSH version being unsupported. Valid values: block, bypass.
adom String
Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
inspectAll String
Level of SSL inspection. Valid values: disable, deep-inspection.
objectFirewallSslsshprofileSshId String
an identifier for the resource.
ports List<Number>
Ports to use for scanning (1 - 65535, default = 443).
proxyAfterTcpHandshake String
Proxy traffic after the TCP 3-way handshake has been established (not before). Valid values: disable, enable.
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.
sshAlgorithm String
Relative strength of encryption algorithms accepted during negotiation. Valid values: compatible, high-encryption.
sshPolicyCheck String
Enable/disable SSH policy check. Valid values: disable, enable.
sshTunPolicyCheck String
Enable/disable SSH tunnel policy check. Valid values: disable, enable.
sslSshProfile String
Ssl Ssh Profile.
status String
Configure protocol inspection status. Valid values: disable, deep-inspection.
unsupportedVersion String
Action based on SSH version being unsupported. Valid values: block, bypass.

Import

ObjectFirewall SslSshProfileSsh 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/objectFirewallSslsshprofileSsh:ObjectFirewallSslsshprofileSsh labelname ObjectFirewallSslSshProfileSsh
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.