fortimanager.ObjectFirewallSslsshprofileSsh
Explore with Pulumi AI
Configure SSH options.
This resource is a sub resource for variable
ssh
of resourcefortimanager.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],
});
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]))
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
})
}
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,
},
});
});
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());
}
}
resources:
trnameObjectFirewallSslsshprofileSsh:
type: fortimanager:ObjectFirewallSslsshprofileSsh
properties:
sslSshProfile: ${trnameObjectFirewallSslsshprofile.name}
ports:
- 34
proxyAfterTcpHandshake: enable
options:
dependsOn:
- ${trnameObjectFirewallSslsshprofile}
trnameObjectFirewallSslsshprofile:
type: fortimanager:ObjectFirewallSslsshprofile
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 string
- The unique name of the resource.
- args ObjectFirewallSslsshprofileSshArgs
- 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 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 string
- The unique name of the resource.
- args ObjectFirewallSslsshprofileSshArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ObjectFirewallSslsshprofileSshArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args 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",
});
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"),
})
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());
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")
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",
});
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
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:
- Ssl
Ssh stringProfile - Ssl Ssh Profile.
- Adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - Inspect
All string - Level of SSL inspection. Valid values:
disable
,deep-inspection
. - Object
Firewall stringSslsshprofile Ssh Id - an identifier for the resource.
- Ports List<double>
- Ports to use for scanning (1 - 65535, default = 443).
- Proxy
After stringTcp Handshake - 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
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - Ssh
Algorithm string - Relative strength of encryption algorithms accepted during negotiation. Valid values:
compatible
,high-encryption
. - Ssh
Policy stringCheck - Enable/disable SSH policy check. Valid values:
disable
,enable
. - Ssh
Tun stringPolicy Check - Enable/disable SSH tunnel policy check. Valid values:
disable
,enable
. - Status string
- Configure protocol inspection status. Valid values:
disable
,deep-inspection
. - Unsupported
Version string - Action based on SSH version being unsupported. Valid values:
block
,bypass
.
- Ssl
Ssh stringProfile - Ssl Ssh Profile.
- Adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - Inspect
All string - Level of SSL inspection. Valid values:
disable
,deep-inspection
. - Object
Firewall stringSslsshprofile Ssh Id - an identifier for the resource.
- Ports []float64
- Ports to use for scanning (1 - 65535, default = 443).
- Proxy
After stringTcp Handshake - 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
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - Ssh
Algorithm string - Relative strength of encryption algorithms accepted during negotiation. Valid values:
compatible
,high-encryption
. - Ssh
Policy stringCheck - Enable/disable SSH policy check. Valid values:
disable
,enable
. - Ssh
Tun stringPolicy Check - Enable/disable SSH tunnel policy check. Valid values:
disable
,enable
. - Status string
- Configure protocol inspection status. Valid values:
disable
,deep-inspection
. - Unsupported
Version string - Action based on SSH version being unsupported. Valid values:
block
,bypass
.
- ssl
Ssh StringProfile - Ssl Ssh Profile.
- adom String
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - inspect
All String - Level of SSL inspection. Valid values:
disable
,deep-inspection
. - object
Firewall StringSslsshprofile Ssh Id - an identifier for the resource.
- ports List<Double>
- Ports to use for scanning (1 - 65535, default = 443).
- proxy
After StringTcp Handshake - 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
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - ssh
Algorithm String - Relative strength of encryption algorithms accepted during negotiation. Valid values:
compatible
,high-encryption
. - ssh
Policy StringCheck - Enable/disable SSH policy check. Valid values:
disable
,enable
. - ssh
Tun StringPolicy Check - Enable/disable SSH tunnel policy check. Valid values:
disable
,enable
. - status String
- Configure protocol inspection status. Valid values:
disable
,deep-inspection
. - unsupported
Version String - Action based on SSH version being unsupported. Valid values:
block
,bypass
.
- ssl
Ssh stringProfile - Ssl Ssh Profile.
- adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - inspect
All string - Level of SSL inspection. Valid values:
disable
,deep-inspection
. - object
Firewall stringSslsshprofile Ssh Id - an identifier for the resource.
- ports number[]
- Ports to use for scanning (1 - 65535, default = 443).
- proxy
After stringTcp Handshake - 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
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - ssh
Algorithm string - Relative strength of encryption algorithms accepted during negotiation. Valid values:
compatible
,high-encryption
. - ssh
Policy stringCheck - Enable/disable SSH policy check. Valid values:
disable
,enable
. - ssh
Tun stringPolicy Check - Enable/disable SSH tunnel policy check. Valid values:
disable
,enable
. - status string
- Configure protocol inspection status. Valid values:
disable
,deep-inspection
. - unsupported
Version string - Action based on SSH version being unsupported. Valid values:
block
,bypass
.
- ssl_
ssh_ strprofile - Ssl Ssh Profile.
- adom str
- Adom. This value is valid only when the
scopetype
isadom
, 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_ strsslsshprofile_ ssh_ id - an identifier for the resource.
- ports Sequence[float]
- Ports to use for scanning (1 - 65535, default = 443).
- proxy_
after_ strtcp_ handshake - 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
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - ssh_
algorithm str - Relative strength of encryption algorithms accepted during negotiation. Valid values:
compatible
,high-encryption
. - ssh_
policy_ strcheck - Enable/disable SSH policy check. Valid values:
disable
,enable
. - ssh_
tun_ strpolicy_ check - 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
.
- ssl
Ssh StringProfile - Ssl Ssh Profile.
- adom String
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - inspect
All String - Level of SSL inspection. Valid values:
disable
,deep-inspection
. - object
Firewall StringSslsshprofile Ssh Id - an identifier for the resource.
- ports List<Number>
- Ports to use for scanning (1 - 65535, default = 443).
- proxy
After StringTcp Handshake - 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
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - ssh
Algorithm String - Relative strength of encryption algorithms accepted during negotiation. Valid values:
compatible
,high-encryption
. - ssh
Policy StringCheck - Enable/disable SSH policy check. Valid values:
disable
,enable
. - ssh
Tun StringPolicy Check - Enable/disable SSH tunnel policy check. Valid values:
disable
,enable
. - status String
- Configure protocol inspection status. Valid values:
disable
,deep-inspection
. - unsupported
Version 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
- 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.
- Adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - Inspect
All string - Level of SSL inspection. Valid values:
disable
,deep-inspection
. - Object
Firewall stringSslsshprofile Ssh Id - an identifier for the resource.
- Ports List<double>
- Ports to use for scanning (1 - 65535, default = 443).
- Proxy
After stringTcp Handshake - 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
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - Ssh
Algorithm string - Relative strength of encryption algorithms accepted during negotiation. Valid values:
compatible
,high-encryption
. - Ssh
Policy stringCheck - Enable/disable SSH policy check. Valid values:
disable
,enable
. - Ssh
Tun stringPolicy Check - Enable/disable SSH tunnel policy check. Valid values:
disable
,enable
. - Ssl
Ssh stringProfile - Ssl Ssh Profile.
- Status string
- Configure protocol inspection status. Valid values:
disable
,deep-inspection
. - Unsupported
Version string - Action based on SSH version being unsupported. Valid values:
block
,bypass
.
- Adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - Inspect
All string - Level of SSL inspection. Valid values:
disable
,deep-inspection
. - Object
Firewall stringSslsshprofile Ssh Id - an identifier for the resource.
- Ports []float64
- Ports to use for scanning (1 - 65535, default = 443).
- Proxy
After stringTcp Handshake - 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
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - Ssh
Algorithm string - Relative strength of encryption algorithms accepted during negotiation. Valid values:
compatible
,high-encryption
. - Ssh
Policy stringCheck - Enable/disable SSH policy check. Valid values:
disable
,enable
. - Ssh
Tun stringPolicy Check - Enable/disable SSH tunnel policy check. Valid values:
disable
,enable
. - Ssl
Ssh stringProfile - Ssl Ssh Profile.
- Status string
- Configure protocol inspection status. Valid values:
disable
,deep-inspection
. - Unsupported
Version string - Action based on SSH version being unsupported. Valid values:
block
,bypass
.
- adom String
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - inspect
All String - Level of SSL inspection. Valid values:
disable
,deep-inspection
. - object
Firewall StringSslsshprofile Ssh Id - an identifier for the resource.
- ports List<Double>
- Ports to use for scanning (1 - 65535, default = 443).
- proxy
After StringTcp Handshake - 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
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - ssh
Algorithm String - Relative strength of encryption algorithms accepted during negotiation. Valid values:
compatible
,high-encryption
. - ssh
Policy StringCheck - Enable/disable SSH policy check. Valid values:
disable
,enable
. - ssh
Tun StringPolicy Check - Enable/disable SSH tunnel policy check. Valid values:
disable
,enable
. - ssl
Ssh StringProfile - Ssl Ssh Profile.
- status String
- Configure protocol inspection status. Valid values:
disable
,deep-inspection
. - unsupported
Version String - Action based on SSH version being unsupported. Valid values:
block
,bypass
.
- adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - inspect
All string - Level of SSL inspection. Valid values:
disable
,deep-inspection
. - object
Firewall stringSslsshprofile Ssh Id - an identifier for the resource.
- ports number[]
- Ports to use for scanning (1 - 65535, default = 443).
- proxy
After stringTcp Handshake - 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
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - ssh
Algorithm string - Relative strength of encryption algorithms accepted during negotiation. Valid values:
compatible
,high-encryption
. - ssh
Policy stringCheck - Enable/disable SSH policy check. Valid values:
disable
,enable
. - ssh
Tun stringPolicy Check - Enable/disable SSH tunnel policy check. Valid values:
disable
,enable
. - ssl
Ssh stringProfile - Ssl Ssh Profile.
- status string
- Configure protocol inspection status. Valid values:
disable
,deep-inspection
. - unsupported
Version string - Action based on SSH version being unsupported. Valid values:
block
,bypass
.
- adom str
- Adom. This value is valid only when the
scopetype
isadom
, 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_ strsslsshprofile_ ssh_ id - an identifier for the resource.
- ports Sequence[float]
- Ports to use for scanning (1 - 65535, default = 443).
- proxy_
after_ strtcp_ handshake - 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
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - ssh_
algorithm str - Relative strength of encryption algorithms accepted during negotiation. Valid values:
compatible
,high-encryption
. - ssh_
policy_ strcheck - Enable/disable SSH policy check. Valid values:
disable
,enable
. - ssh_
tun_ strpolicy_ check - Enable/disable SSH tunnel policy check. Valid values:
disable
,enable
. - ssl_
ssh_ strprofile - 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
isadom
, otherwise the value of adom in the provider will be inherited. - inspect
All String - Level of SSL inspection. Valid values:
disable
,deep-inspection
. - object
Firewall StringSslsshprofile Ssh Id - an identifier for the resource.
- ports List<Number>
- Ports to use for scanning (1 - 65535, default = 443).
- proxy
After StringTcp Handshake - 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
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - ssh
Algorithm String - Relative strength of encryption algorithms accepted during negotiation. Valid values:
compatible
,high-encryption
. - ssh
Policy StringCheck - Enable/disable SSH policy check. Valid values:
disable
,enable
. - ssh
Tun StringPolicy Check - Enable/disable SSH tunnel policy check. Valid values:
disable
,enable
. - ssl
Ssh StringProfile - Ssl Ssh Profile.
- status String
- Configure protocol inspection status. Valid values:
disable
,deep-inspection
. - unsupported
Version 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
$ 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.