1. Packages
  2. Fortios
  3. API Docs
  4. firewall
  5. firewall/ssh
  6. Hostkey
Fortios v0.0.6 published on Tuesday, Jul 9, 2024 by pulumiverse

fortios.firewall/ssh.Hostkey

Explore with Pulumi AI

fortios logo
Fortios v0.0.6 published on Tuesday, Jul 9, 2024 by pulumiverse

    SSH proxy host public keys.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as fortios from "@pulumiverse/fortios";
    
    const trname = new fortios.firewall.ssh.Hostkey("trname", {
        hostname: "testmachine",
        ip: "1.1.1.1",
        port: 22,
        status: "trusted",
        type: "RSA",
    });
    
    import pulumi
    import pulumiverse_fortios as fortios
    
    trname = fortios.firewall.ssh.Hostkey("trname",
        hostname="testmachine",
        ip="1.1.1.1",
        port=22,
        status="trusted",
        type="RSA")
    
    package main
    
    import (
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    	"github.com/pulumiverse/pulumi-fortios/sdk/go/fortios/firewall"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := firewall.NewHostkey(ctx, "trname", &firewall.HostkeyArgs{
    			Hostname: pulumi.String("testmachine"),
    			Ip:       pulumi.String("1.1.1.1"),
    			Port:     pulumi.Int(22),
    			Status:   pulumi.String("trusted"),
    			Type:     pulumi.String("RSA"),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Fortios = Pulumiverse.Fortios;
    
    return await Deployment.RunAsync(() => 
    {
        var trname = new Fortios.Firewall.Ssh.Hostkey("trname", new()
        {
            Hostname = "testmachine",
            Ip = "1.1.1.1",
            Port = 22,
            Status = "trusted",
            Type = "RSA",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.fortios.firewall.Hostkey;
    import com.pulumi.fortios.firewall.HostkeyArgs;
    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 Hostkey("trname", HostkeyArgs.builder()
                .hostname("testmachine")
                .ip("1.1.1.1")
                .port(22)
                .status("trusted")
                .type("RSA")
                .build());
    
        }
    }
    
    resources:
      trname:
        type: fortios:firewall/ssh:Hostkey
        properties:
          hostname: testmachine
          ip: 1.1.1.1
          port: 22
          status: trusted
          type: RSA
    

    Create Hostkey Resource

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

    Constructor syntax

    new Hostkey(name: string, args?: HostkeyArgs, opts?: CustomResourceOptions);
    @overload
    def Hostkey(resource_name: str,
                args: Optional[HostkeyArgs] = None,
                opts: Optional[ResourceOptions] = None)
    
    @overload
    def Hostkey(resource_name: str,
                opts: Optional[ResourceOptions] = None,
                hostname: Optional[str] = None,
                ip: Optional[str] = None,
                name: Optional[str] = None,
                nid: Optional[str] = None,
                port: Optional[int] = None,
                public_key: Optional[str] = None,
                status: Optional[str] = None,
                type: Optional[str] = None,
                usage: Optional[str] = None,
                vdomparam: Optional[str] = None)
    func NewHostkey(ctx *Context, name string, args *HostkeyArgs, opts ...ResourceOption) (*Hostkey, error)
    public Hostkey(string name, HostkeyArgs? args = null, CustomResourceOptions? opts = null)
    public Hostkey(String name, HostkeyArgs args)
    public Hostkey(String name, HostkeyArgs args, CustomResourceOptions options)
    
    type: fortios:firewall/ssh/hostkey:Hostkey
    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 HostkeyArgs
    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 HostkeyArgs
    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 HostkeyArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args HostkeyArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args HostkeyArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Hostkey Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    The Hostkey resource accepts the following input properties:

    Hostname string
    Hostname of the SSH server.
    Ip string
    IP address of the SSH server.
    Name string
    SSH public key name.
    Nid string
    Set the nid of the ECDSA key. Valid values: 256, 384, 521.
    Port int
    Port of the SSH server.
    PublicKey string
    SSH public key.
    Status string
    Set the trust status of the public key. Valid values: trusted, revoked.
    Type string
    Set the type of the public key. Valid values: RSA, DSA, ECDSA, ED25519, RSA-CA, DSA-CA, ECDSA-CA, ED25519-CA.
    Usage string
    Usage for this public key. Valid values: transparent-proxy, access-proxy.
    Vdomparam string
    Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
    Hostname string
    Hostname of the SSH server.
    Ip string
    IP address of the SSH server.
    Name string
    SSH public key name.
    Nid string
    Set the nid of the ECDSA key. Valid values: 256, 384, 521.
    Port int
    Port of the SSH server.
    PublicKey string
    SSH public key.
    Status string
    Set the trust status of the public key. Valid values: trusted, revoked.
    Type string
    Set the type of the public key. Valid values: RSA, DSA, ECDSA, ED25519, RSA-CA, DSA-CA, ECDSA-CA, ED25519-CA.
    Usage string
    Usage for this public key. Valid values: transparent-proxy, access-proxy.
    Vdomparam string
    Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
    hostname String
    Hostname of the SSH server.
    ip String
    IP address of the SSH server.
    name String
    SSH public key name.
    nid String
    Set the nid of the ECDSA key. Valid values: 256, 384, 521.
    port Integer
    Port of the SSH server.
    publicKey String
    SSH public key.
    status String
    Set the trust status of the public key. Valid values: trusted, revoked.
    type String
    Set the type of the public key. Valid values: RSA, DSA, ECDSA, ED25519, RSA-CA, DSA-CA, ECDSA-CA, ED25519-CA.
    usage String
    Usage for this public key. Valid values: transparent-proxy, access-proxy.
    vdomparam String
    Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
    hostname string
    Hostname of the SSH server.
    ip string
    IP address of the SSH server.
    name string
    SSH public key name.
    nid string
    Set the nid of the ECDSA key. Valid values: 256, 384, 521.
    port number
    Port of the SSH server.
    publicKey string
    SSH public key.
    status string
    Set the trust status of the public key. Valid values: trusted, revoked.
    type string
    Set the type of the public key. Valid values: RSA, DSA, ECDSA, ED25519, RSA-CA, DSA-CA, ECDSA-CA, ED25519-CA.
    usage string
    Usage for this public key. Valid values: transparent-proxy, access-proxy.
    vdomparam string
    Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
    hostname str
    Hostname of the SSH server.
    ip str
    IP address of the SSH server.
    name str
    SSH public key name.
    nid str
    Set the nid of the ECDSA key. Valid values: 256, 384, 521.
    port int
    Port of the SSH server.
    public_key str
    SSH public key.
    status str
    Set the trust status of the public key. Valid values: trusted, revoked.
    type str
    Set the type of the public key. Valid values: RSA, DSA, ECDSA, ED25519, RSA-CA, DSA-CA, ECDSA-CA, ED25519-CA.
    usage str
    Usage for this public key. Valid values: transparent-proxy, access-proxy.
    vdomparam str
    Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
    hostname String
    Hostname of the SSH server.
    ip String
    IP address of the SSH server.
    name String
    SSH public key name.
    nid String
    Set the nid of the ECDSA key. Valid values: 256, 384, 521.
    port Number
    Port of the SSH server.
    publicKey String
    SSH public key.
    status String
    Set the trust status of the public key. Valid values: trusted, revoked.
    type String
    Set the type of the public key. Valid values: RSA, DSA, ECDSA, ED25519, RSA-CA, DSA-CA, ECDSA-CA, ED25519-CA.
    usage String
    Usage for this public key. Valid values: transparent-proxy, access-proxy.
    vdomparam String
    Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.

    Outputs

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

    Get an existing Hostkey 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?: HostkeyState, opts?: CustomResourceOptions): Hostkey
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            hostname: Optional[str] = None,
            ip: Optional[str] = None,
            name: Optional[str] = None,
            nid: Optional[str] = None,
            port: Optional[int] = None,
            public_key: Optional[str] = None,
            status: Optional[str] = None,
            type: Optional[str] = None,
            usage: Optional[str] = None,
            vdomparam: Optional[str] = None) -> Hostkey
    func GetHostkey(ctx *Context, name string, id IDInput, state *HostkeyState, opts ...ResourceOption) (*Hostkey, error)
    public static Hostkey Get(string name, Input<string> id, HostkeyState? state, CustomResourceOptions? opts = null)
    public static Hostkey get(String name, Output<String> id, HostkeyState state, CustomResourceOptions options)
    Resource lookup is not supported in YAML
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    Hostname string
    Hostname of the SSH server.
    Ip string
    IP address of the SSH server.
    Name string
    SSH public key name.
    Nid string
    Set the nid of the ECDSA key. Valid values: 256, 384, 521.
    Port int
    Port of the SSH server.
    PublicKey string
    SSH public key.
    Status string
    Set the trust status of the public key. Valid values: trusted, revoked.
    Type string
    Set the type of the public key. Valid values: RSA, DSA, ECDSA, ED25519, RSA-CA, DSA-CA, ECDSA-CA, ED25519-CA.
    Usage string
    Usage for this public key. Valid values: transparent-proxy, access-proxy.
    Vdomparam string
    Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
    Hostname string
    Hostname of the SSH server.
    Ip string
    IP address of the SSH server.
    Name string
    SSH public key name.
    Nid string
    Set the nid of the ECDSA key. Valid values: 256, 384, 521.
    Port int
    Port of the SSH server.
    PublicKey string
    SSH public key.
    Status string
    Set the trust status of the public key. Valid values: trusted, revoked.
    Type string
    Set the type of the public key. Valid values: RSA, DSA, ECDSA, ED25519, RSA-CA, DSA-CA, ECDSA-CA, ED25519-CA.
    Usage string
    Usage for this public key. Valid values: transparent-proxy, access-proxy.
    Vdomparam string
    Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
    hostname String
    Hostname of the SSH server.
    ip String
    IP address of the SSH server.
    name String
    SSH public key name.
    nid String
    Set the nid of the ECDSA key. Valid values: 256, 384, 521.
    port Integer
    Port of the SSH server.
    publicKey String
    SSH public key.
    status String
    Set the trust status of the public key. Valid values: trusted, revoked.
    type String
    Set the type of the public key. Valid values: RSA, DSA, ECDSA, ED25519, RSA-CA, DSA-CA, ECDSA-CA, ED25519-CA.
    usage String
    Usage for this public key. Valid values: transparent-proxy, access-proxy.
    vdomparam String
    Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
    hostname string
    Hostname of the SSH server.
    ip string
    IP address of the SSH server.
    name string
    SSH public key name.
    nid string
    Set the nid of the ECDSA key. Valid values: 256, 384, 521.
    port number
    Port of the SSH server.
    publicKey string
    SSH public key.
    status string
    Set the trust status of the public key. Valid values: trusted, revoked.
    type string
    Set the type of the public key. Valid values: RSA, DSA, ECDSA, ED25519, RSA-CA, DSA-CA, ECDSA-CA, ED25519-CA.
    usage string
    Usage for this public key. Valid values: transparent-proxy, access-proxy.
    vdomparam string
    Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
    hostname str
    Hostname of the SSH server.
    ip str
    IP address of the SSH server.
    name str
    SSH public key name.
    nid str
    Set the nid of the ECDSA key. Valid values: 256, 384, 521.
    port int
    Port of the SSH server.
    public_key str
    SSH public key.
    status str
    Set the trust status of the public key. Valid values: trusted, revoked.
    type str
    Set the type of the public key. Valid values: RSA, DSA, ECDSA, ED25519, RSA-CA, DSA-CA, ECDSA-CA, ED25519-CA.
    usage str
    Usage for this public key. Valid values: transparent-proxy, access-proxy.
    vdomparam str
    Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
    hostname String
    Hostname of the SSH server.
    ip String
    IP address of the SSH server.
    name String
    SSH public key name.
    nid String
    Set the nid of the ECDSA key. Valid values: 256, 384, 521.
    port Number
    Port of the SSH server.
    publicKey String
    SSH public key.
    status String
    Set the trust status of the public key. Valid values: trusted, revoked.
    type String
    Set the type of the public key. Valid values: RSA, DSA, ECDSA, ED25519, RSA-CA, DSA-CA, ECDSA-CA, ED25519-CA.
    usage String
    Usage for this public key. Valid values: transparent-proxy, access-proxy.
    vdomparam String
    Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.

    Import

    FirewallSsh HostKey can be imported using any of these accepted formats:

    $ pulumi import fortios:firewall/ssh/hostkey:Hostkey labelname {{name}}
    

    If you do not want to import arguments of block:

    $ export “FORTIOS_IMPORT_TABLE”=“false”

    $ pulumi import fortios:firewall/ssh/hostkey:Hostkey labelname {{name}}
    

    $ unset “FORTIOS_IMPORT_TABLE”

    To learn more about importing existing cloud resources, see Importing resources.

    Package Details

    Repository
    fortios pulumiverse/pulumi-fortios
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the fortios Terraform Provider.
    fortios logo
    Fortios v0.0.6 published on Tuesday, Jul 9, 2024 by pulumiverse