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

fortios.firewall.Accessproxysshclientcert

Explore with Pulumi AI

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

    Configure Access Proxy SSH client certificate. Applies to FortiOS Version >= 7.0.1.

    Create Accessproxysshclientcert Resource

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

    Constructor syntax

    new Accessproxysshclientcert(name: string, args?: AccessproxysshclientcertArgs, opts?: CustomResourceOptions);
    @overload
    def Accessproxysshclientcert(resource_name: str,
                                 args: Optional[AccessproxysshclientcertArgs] = None,
                                 opts: Optional[ResourceOptions] = None)
    
    @overload
    def Accessproxysshclientcert(resource_name: str,
                                 opts: Optional[ResourceOptions] = None,
                                 auth_ca: Optional[str] = None,
                                 cert_extensions: Optional[Sequence[AccessproxysshclientcertCertExtensionArgs]] = None,
                                 dynamic_sort_subtable: Optional[str] = None,
                                 get_all_tables: Optional[str] = None,
                                 name: Optional[str] = None,
                                 permit_agent_forwarding: Optional[str] = None,
                                 permit_port_forwarding: Optional[str] = None,
                                 permit_pty: Optional[str] = None,
                                 permit_user_rc: Optional[str] = None,
                                 permit_x11_forwarding: Optional[str] = None,
                                 source_address: Optional[str] = None,
                                 vdomparam: Optional[str] = None)
    func NewAccessproxysshclientcert(ctx *Context, name string, args *AccessproxysshclientcertArgs, opts ...ResourceOption) (*Accessproxysshclientcert, error)
    public Accessproxysshclientcert(string name, AccessproxysshclientcertArgs? args = null, CustomResourceOptions? opts = null)
    public Accessproxysshclientcert(String name, AccessproxysshclientcertArgs args)
    public Accessproxysshclientcert(String name, AccessproxysshclientcertArgs args, CustomResourceOptions options)
    
    type: fortios:firewall:Accessproxysshclientcert
    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 AccessproxysshclientcertArgs
    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 AccessproxysshclientcertArgs
    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 AccessproxysshclientcertArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args AccessproxysshclientcertArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args AccessproxysshclientcertArgs
    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 accessproxysshclientcertResource = new Fortios.Firewall.Accessproxysshclientcert("accessproxysshclientcertResource", new()
    {
        AuthCa = "string",
        CertExtensions = new[]
        {
            new Fortios.Firewall.Inputs.AccessproxysshclientcertCertExtensionArgs
            {
                Critical = "string",
                Data = "string",
                Name = "string",
                Type = "string",
            },
        },
        DynamicSortSubtable = "string",
        GetAllTables = "string",
        Name = "string",
        PermitAgentForwarding = "string",
        PermitPortForwarding = "string",
        PermitPty = "string",
        PermitUserRc = "string",
        PermitX11Forwarding = "string",
        SourceAddress = "string",
        Vdomparam = "string",
    });
    
    example, err := firewall.NewAccessproxysshclientcert(ctx, "accessproxysshclientcertResource", &firewall.AccessproxysshclientcertArgs{
    	AuthCa: pulumi.String("string"),
    	CertExtensions: firewall.AccessproxysshclientcertCertExtensionArray{
    		&firewall.AccessproxysshclientcertCertExtensionArgs{
    			Critical: pulumi.String("string"),
    			Data:     pulumi.String("string"),
    			Name:     pulumi.String("string"),
    			Type:     pulumi.String("string"),
    		},
    	},
    	DynamicSortSubtable:   pulumi.String("string"),
    	GetAllTables:          pulumi.String("string"),
    	Name:                  pulumi.String("string"),
    	PermitAgentForwarding: pulumi.String("string"),
    	PermitPortForwarding:  pulumi.String("string"),
    	PermitPty:             pulumi.String("string"),
    	PermitUserRc:          pulumi.String("string"),
    	PermitX11Forwarding:   pulumi.String("string"),
    	SourceAddress:         pulumi.String("string"),
    	Vdomparam:             pulumi.String("string"),
    })
    
    var accessproxysshclientcertResource = new Accessproxysshclientcert("accessproxysshclientcertResource", AccessproxysshclientcertArgs.builder()
        .authCa("string")
        .certExtensions(AccessproxysshclientcertCertExtensionArgs.builder()
            .critical("string")
            .data("string")
            .name("string")
            .type("string")
            .build())
        .dynamicSortSubtable("string")
        .getAllTables("string")
        .name("string")
        .permitAgentForwarding("string")
        .permitPortForwarding("string")
        .permitPty("string")
        .permitUserRc("string")
        .permitX11Forwarding("string")
        .sourceAddress("string")
        .vdomparam("string")
        .build());
    
    accessproxysshclientcert_resource = fortios.firewall.Accessproxysshclientcert("accessproxysshclientcertResource",
        auth_ca="string",
        cert_extensions=[fortios.firewall.AccessproxysshclientcertCertExtensionArgs(
            critical="string",
            data="string",
            name="string",
            type="string",
        )],
        dynamic_sort_subtable="string",
        get_all_tables="string",
        name="string",
        permit_agent_forwarding="string",
        permit_port_forwarding="string",
        permit_pty="string",
        permit_user_rc="string",
        permit_x11_forwarding="string",
        source_address="string",
        vdomparam="string")
    
    const accessproxysshclientcertResource = new fortios.firewall.Accessproxysshclientcert("accessproxysshclientcertResource", {
        authCa: "string",
        certExtensions: [{
            critical: "string",
            data: "string",
            name: "string",
            type: "string",
        }],
        dynamicSortSubtable: "string",
        getAllTables: "string",
        name: "string",
        permitAgentForwarding: "string",
        permitPortForwarding: "string",
        permitPty: "string",
        permitUserRc: "string",
        permitX11Forwarding: "string",
        sourceAddress: "string",
        vdomparam: "string",
    });
    
    type: fortios:firewall:Accessproxysshclientcert
    properties:
        authCa: string
        certExtensions:
            - critical: string
              data: string
              name: string
              type: string
        dynamicSortSubtable: string
        getAllTables: string
        name: string
        permitAgentForwarding: string
        permitPortForwarding: string
        permitPty: string
        permitUserRc: string
        permitX11Forwarding: string
        sourceAddress: string
        vdomparam: string
    

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

    AuthCa string
    Name of the SSH server public key authentication CA.
    CertExtensions List<Pulumiverse.Fortios.Firewall.Inputs.AccessproxysshclientcertCertExtension>
    Configure certificate extension for user certificate. The structure of cert_extension block is documented below.
    DynamicSortSubtable string
    Sort sub-tables, please do not set this parameter when configuring static sub-tables. Options: [ false, true, natural, alphabetical ]. false: Default value, do not sort tables; true/natural: sort tables in natural order. For example: [ a10, a2 ] -> [ a2, a10 ]; alphabetical: sort tables in alphabetical order. For example: [ a10, a2 ] -> [ a10, a2 ].
    GetAllTables string
    Get all sub-tables including unconfigured tables. Do not set this variable to true if you configure sub-table in another resource, otherwise, conflicts and overwrite will occur. Options: [ false, true ]. false: Default value, do not get unconfigured tables; true: get all tables including unconfigured tables.
    Name string
    SSH client certificate name.
    PermitAgentForwarding string
    Enable/disable appending permit-agent-forwarding certificate extension. Valid values: enable, disable.
    PermitPortForwarding string
    Enable/disable appending permit-port-forwarding certificate extension. Valid values: enable, disable.
    PermitPty string
    Enable/disable appending permit-pty certificate extension. Valid values: enable, disable.
    PermitUserRc string
    Enable/disable appending permit-user-rc certificate extension. Valid values: enable, disable.
    PermitX11Forwarding string
    Enable/disable appending permit-x11-forwarding certificate extension. Valid values: enable, disable.
    SourceAddress string
    Enable/disable appending source-address certificate critical option. This option ensure certificate only accepted from FortiGate source address. Valid values: enable, disable.
    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.
    AuthCa string
    Name of the SSH server public key authentication CA.
    CertExtensions []AccessproxysshclientcertCertExtensionArgs
    Configure certificate extension for user certificate. The structure of cert_extension block is documented below.
    DynamicSortSubtable string
    Sort sub-tables, please do not set this parameter when configuring static sub-tables. Options: [ false, true, natural, alphabetical ]. false: Default value, do not sort tables; true/natural: sort tables in natural order. For example: [ a10, a2 ] -> [ a2, a10 ]; alphabetical: sort tables in alphabetical order. For example: [ a10, a2 ] -> [ a10, a2 ].
    GetAllTables string
    Get all sub-tables including unconfigured tables. Do not set this variable to true if you configure sub-table in another resource, otherwise, conflicts and overwrite will occur. Options: [ false, true ]. false: Default value, do not get unconfigured tables; true: get all tables including unconfigured tables.
    Name string
    SSH client certificate name.
    PermitAgentForwarding string
    Enable/disable appending permit-agent-forwarding certificate extension. Valid values: enable, disable.
    PermitPortForwarding string
    Enable/disable appending permit-port-forwarding certificate extension. Valid values: enable, disable.
    PermitPty string
    Enable/disable appending permit-pty certificate extension. Valid values: enable, disable.
    PermitUserRc string
    Enable/disable appending permit-user-rc certificate extension. Valid values: enable, disable.
    PermitX11Forwarding string
    Enable/disable appending permit-x11-forwarding certificate extension. Valid values: enable, disable.
    SourceAddress string
    Enable/disable appending source-address certificate critical option. This option ensure certificate only accepted from FortiGate source address. Valid values: enable, disable.
    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.
    authCa String
    Name of the SSH server public key authentication CA.
    certExtensions List<AccessproxysshclientcertCertExtension>
    Configure certificate extension for user certificate. The structure of cert_extension block is documented below.
    dynamicSortSubtable String
    Sort sub-tables, please do not set this parameter when configuring static sub-tables. Options: [ false, true, natural, alphabetical ]. false: Default value, do not sort tables; true/natural: sort tables in natural order. For example: [ a10, a2 ] -> [ a2, a10 ]; alphabetical: sort tables in alphabetical order. For example: [ a10, a2 ] -> [ a10, a2 ].
    getAllTables String
    Get all sub-tables including unconfigured tables. Do not set this variable to true if you configure sub-table in another resource, otherwise, conflicts and overwrite will occur. Options: [ false, true ]. false: Default value, do not get unconfigured tables; true: get all tables including unconfigured tables.
    name String
    SSH client certificate name.
    permitAgentForwarding String
    Enable/disable appending permit-agent-forwarding certificate extension. Valid values: enable, disable.
    permitPortForwarding String
    Enable/disable appending permit-port-forwarding certificate extension. Valid values: enable, disable.
    permitPty String
    Enable/disable appending permit-pty certificate extension. Valid values: enable, disable.
    permitUserRc String
    Enable/disable appending permit-user-rc certificate extension. Valid values: enable, disable.
    permitX11Forwarding String
    Enable/disable appending permit-x11-forwarding certificate extension. Valid values: enable, disable.
    sourceAddress String
    Enable/disable appending source-address certificate critical option. This option ensure certificate only accepted from FortiGate source address. Valid values: enable, disable.
    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.
    authCa string
    Name of the SSH server public key authentication CA.
    certExtensions AccessproxysshclientcertCertExtension[]
    Configure certificate extension for user certificate. The structure of cert_extension block is documented below.
    dynamicSortSubtable string
    Sort sub-tables, please do not set this parameter when configuring static sub-tables. Options: [ false, true, natural, alphabetical ]. false: Default value, do not sort tables; true/natural: sort tables in natural order. For example: [ a10, a2 ] -> [ a2, a10 ]; alphabetical: sort tables in alphabetical order. For example: [ a10, a2 ] -> [ a10, a2 ].
    getAllTables string
    Get all sub-tables including unconfigured tables. Do not set this variable to true if you configure sub-table in another resource, otherwise, conflicts and overwrite will occur. Options: [ false, true ]. false: Default value, do not get unconfigured tables; true: get all tables including unconfigured tables.
    name string
    SSH client certificate name.
    permitAgentForwarding string
    Enable/disable appending permit-agent-forwarding certificate extension. Valid values: enable, disable.
    permitPortForwarding string
    Enable/disable appending permit-port-forwarding certificate extension. Valid values: enable, disable.
    permitPty string
    Enable/disable appending permit-pty certificate extension. Valid values: enable, disable.
    permitUserRc string
    Enable/disable appending permit-user-rc certificate extension. Valid values: enable, disable.
    permitX11Forwarding string
    Enable/disable appending permit-x11-forwarding certificate extension. Valid values: enable, disable.
    sourceAddress string
    Enable/disable appending source-address certificate critical option. This option ensure certificate only accepted from FortiGate source address. Valid values: enable, disable.
    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.
    auth_ca str
    Name of the SSH server public key authentication CA.
    cert_extensions Sequence[AccessproxysshclientcertCertExtensionArgs]
    Configure certificate extension for user certificate. The structure of cert_extension block is documented below.
    dynamic_sort_subtable str
    Sort sub-tables, please do not set this parameter when configuring static sub-tables. Options: [ false, true, natural, alphabetical ]. false: Default value, do not sort tables; true/natural: sort tables in natural order. For example: [ a10, a2 ] -> [ a2, a10 ]; alphabetical: sort tables in alphabetical order. For example: [ a10, a2 ] -> [ a10, a2 ].
    get_all_tables str
    Get all sub-tables including unconfigured tables. Do not set this variable to true if you configure sub-table in another resource, otherwise, conflicts and overwrite will occur. Options: [ false, true ]. false: Default value, do not get unconfigured tables; true: get all tables including unconfigured tables.
    name str
    SSH client certificate name.
    permit_agent_forwarding str
    Enable/disable appending permit-agent-forwarding certificate extension. Valid values: enable, disable.
    permit_port_forwarding str
    Enable/disable appending permit-port-forwarding certificate extension. Valid values: enable, disable.
    permit_pty str
    Enable/disable appending permit-pty certificate extension. Valid values: enable, disable.
    permit_user_rc str
    Enable/disable appending permit-user-rc certificate extension. Valid values: enable, disable.
    permit_x11_forwarding str
    Enable/disable appending permit-x11-forwarding certificate extension. Valid values: enable, disable.
    source_address str
    Enable/disable appending source-address certificate critical option. This option ensure certificate only accepted from FortiGate source address. Valid values: enable, disable.
    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.
    authCa String
    Name of the SSH server public key authentication CA.
    certExtensions List<Property Map>
    Configure certificate extension for user certificate. The structure of cert_extension block is documented below.
    dynamicSortSubtable String
    Sort sub-tables, please do not set this parameter when configuring static sub-tables. Options: [ false, true, natural, alphabetical ]. false: Default value, do not sort tables; true/natural: sort tables in natural order. For example: [ a10, a2 ] -> [ a2, a10 ]; alphabetical: sort tables in alphabetical order. For example: [ a10, a2 ] -> [ a10, a2 ].
    getAllTables String
    Get all sub-tables including unconfigured tables. Do not set this variable to true if you configure sub-table in another resource, otherwise, conflicts and overwrite will occur. Options: [ false, true ]. false: Default value, do not get unconfigured tables; true: get all tables including unconfigured tables.
    name String
    SSH client certificate name.
    permitAgentForwarding String
    Enable/disable appending permit-agent-forwarding certificate extension. Valid values: enable, disable.
    permitPortForwarding String
    Enable/disable appending permit-port-forwarding certificate extension. Valid values: enable, disable.
    permitPty String
    Enable/disable appending permit-pty certificate extension. Valid values: enable, disable.
    permitUserRc String
    Enable/disable appending permit-user-rc certificate extension. Valid values: enable, disable.
    permitX11Forwarding String
    Enable/disable appending permit-x11-forwarding certificate extension. Valid values: enable, disable.
    sourceAddress String
    Enable/disable appending source-address certificate critical option. This option ensure certificate only accepted from FortiGate source address. Valid values: enable, disable.
    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 Accessproxysshclientcert 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 Accessproxysshclientcert Resource

    Get an existing Accessproxysshclientcert 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?: AccessproxysshclientcertState, opts?: CustomResourceOptions): Accessproxysshclientcert
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            auth_ca: Optional[str] = None,
            cert_extensions: Optional[Sequence[AccessproxysshclientcertCertExtensionArgs]] = None,
            dynamic_sort_subtable: Optional[str] = None,
            get_all_tables: Optional[str] = None,
            name: Optional[str] = None,
            permit_agent_forwarding: Optional[str] = None,
            permit_port_forwarding: Optional[str] = None,
            permit_pty: Optional[str] = None,
            permit_user_rc: Optional[str] = None,
            permit_x11_forwarding: Optional[str] = None,
            source_address: Optional[str] = None,
            vdomparam: Optional[str] = None) -> Accessproxysshclientcert
    func GetAccessproxysshclientcert(ctx *Context, name string, id IDInput, state *AccessproxysshclientcertState, opts ...ResourceOption) (*Accessproxysshclientcert, error)
    public static Accessproxysshclientcert Get(string name, Input<string> id, AccessproxysshclientcertState? state, CustomResourceOptions? opts = null)
    public static Accessproxysshclientcert get(String name, Output<String> id, AccessproxysshclientcertState 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:
    AuthCa string
    Name of the SSH server public key authentication CA.
    CertExtensions List<Pulumiverse.Fortios.Firewall.Inputs.AccessproxysshclientcertCertExtension>
    Configure certificate extension for user certificate. The structure of cert_extension block is documented below.
    DynamicSortSubtable string
    Sort sub-tables, please do not set this parameter when configuring static sub-tables. Options: [ false, true, natural, alphabetical ]. false: Default value, do not sort tables; true/natural: sort tables in natural order. For example: [ a10, a2 ] -> [ a2, a10 ]; alphabetical: sort tables in alphabetical order. For example: [ a10, a2 ] -> [ a10, a2 ].
    GetAllTables string
    Get all sub-tables including unconfigured tables. Do not set this variable to true if you configure sub-table in another resource, otherwise, conflicts and overwrite will occur. Options: [ false, true ]. false: Default value, do not get unconfigured tables; true: get all tables including unconfigured tables.
    Name string
    SSH client certificate name.
    PermitAgentForwarding string
    Enable/disable appending permit-agent-forwarding certificate extension. Valid values: enable, disable.
    PermitPortForwarding string
    Enable/disable appending permit-port-forwarding certificate extension. Valid values: enable, disable.
    PermitPty string
    Enable/disable appending permit-pty certificate extension. Valid values: enable, disable.
    PermitUserRc string
    Enable/disable appending permit-user-rc certificate extension. Valid values: enable, disable.
    PermitX11Forwarding string
    Enable/disable appending permit-x11-forwarding certificate extension. Valid values: enable, disable.
    SourceAddress string
    Enable/disable appending source-address certificate critical option. This option ensure certificate only accepted from FortiGate source address. Valid values: enable, disable.
    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.
    AuthCa string
    Name of the SSH server public key authentication CA.
    CertExtensions []AccessproxysshclientcertCertExtensionArgs
    Configure certificate extension for user certificate. The structure of cert_extension block is documented below.
    DynamicSortSubtable string
    Sort sub-tables, please do not set this parameter when configuring static sub-tables. Options: [ false, true, natural, alphabetical ]. false: Default value, do not sort tables; true/natural: sort tables in natural order. For example: [ a10, a2 ] -> [ a2, a10 ]; alphabetical: sort tables in alphabetical order. For example: [ a10, a2 ] -> [ a10, a2 ].
    GetAllTables string
    Get all sub-tables including unconfigured tables. Do not set this variable to true if you configure sub-table in another resource, otherwise, conflicts and overwrite will occur. Options: [ false, true ]. false: Default value, do not get unconfigured tables; true: get all tables including unconfigured tables.
    Name string
    SSH client certificate name.
    PermitAgentForwarding string
    Enable/disable appending permit-agent-forwarding certificate extension. Valid values: enable, disable.
    PermitPortForwarding string
    Enable/disable appending permit-port-forwarding certificate extension. Valid values: enable, disable.
    PermitPty string
    Enable/disable appending permit-pty certificate extension. Valid values: enable, disable.
    PermitUserRc string
    Enable/disable appending permit-user-rc certificate extension. Valid values: enable, disable.
    PermitX11Forwarding string
    Enable/disable appending permit-x11-forwarding certificate extension. Valid values: enable, disable.
    SourceAddress string
    Enable/disable appending source-address certificate critical option. This option ensure certificate only accepted from FortiGate source address. Valid values: enable, disable.
    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.
    authCa String
    Name of the SSH server public key authentication CA.
    certExtensions List<AccessproxysshclientcertCertExtension>
    Configure certificate extension for user certificate. The structure of cert_extension block is documented below.
    dynamicSortSubtable String
    Sort sub-tables, please do not set this parameter when configuring static sub-tables. Options: [ false, true, natural, alphabetical ]. false: Default value, do not sort tables; true/natural: sort tables in natural order. For example: [ a10, a2 ] -> [ a2, a10 ]; alphabetical: sort tables in alphabetical order. For example: [ a10, a2 ] -> [ a10, a2 ].
    getAllTables String
    Get all sub-tables including unconfigured tables. Do not set this variable to true if you configure sub-table in another resource, otherwise, conflicts and overwrite will occur. Options: [ false, true ]. false: Default value, do not get unconfigured tables; true: get all tables including unconfigured tables.
    name String
    SSH client certificate name.
    permitAgentForwarding String
    Enable/disable appending permit-agent-forwarding certificate extension. Valid values: enable, disable.
    permitPortForwarding String
    Enable/disable appending permit-port-forwarding certificate extension. Valid values: enable, disable.
    permitPty String
    Enable/disable appending permit-pty certificate extension. Valid values: enable, disable.
    permitUserRc String
    Enable/disable appending permit-user-rc certificate extension. Valid values: enable, disable.
    permitX11Forwarding String
    Enable/disable appending permit-x11-forwarding certificate extension. Valid values: enable, disable.
    sourceAddress String
    Enable/disable appending source-address certificate critical option. This option ensure certificate only accepted from FortiGate source address. Valid values: enable, disable.
    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.
    authCa string
    Name of the SSH server public key authentication CA.
    certExtensions AccessproxysshclientcertCertExtension[]
    Configure certificate extension for user certificate. The structure of cert_extension block is documented below.
    dynamicSortSubtable string
    Sort sub-tables, please do not set this parameter when configuring static sub-tables. Options: [ false, true, natural, alphabetical ]. false: Default value, do not sort tables; true/natural: sort tables in natural order. For example: [ a10, a2 ] -> [ a2, a10 ]; alphabetical: sort tables in alphabetical order. For example: [ a10, a2 ] -> [ a10, a2 ].
    getAllTables string
    Get all sub-tables including unconfigured tables. Do not set this variable to true if you configure sub-table in another resource, otherwise, conflicts and overwrite will occur. Options: [ false, true ]. false: Default value, do not get unconfigured tables; true: get all tables including unconfigured tables.
    name string
    SSH client certificate name.
    permitAgentForwarding string
    Enable/disable appending permit-agent-forwarding certificate extension. Valid values: enable, disable.
    permitPortForwarding string
    Enable/disable appending permit-port-forwarding certificate extension. Valid values: enable, disable.
    permitPty string
    Enable/disable appending permit-pty certificate extension. Valid values: enable, disable.
    permitUserRc string
    Enable/disable appending permit-user-rc certificate extension. Valid values: enable, disable.
    permitX11Forwarding string
    Enable/disable appending permit-x11-forwarding certificate extension. Valid values: enable, disable.
    sourceAddress string
    Enable/disable appending source-address certificate critical option. This option ensure certificate only accepted from FortiGate source address. Valid values: enable, disable.
    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.
    auth_ca str
    Name of the SSH server public key authentication CA.
    cert_extensions Sequence[AccessproxysshclientcertCertExtensionArgs]
    Configure certificate extension for user certificate. The structure of cert_extension block is documented below.
    dynamic_sort_subtable str
    Sort sub-tables, please do not set this parameter when configuring static sub-tables. Options: [ false, true, natural, alphabetical ]. false: Default value, do not sort tables; true/natural: sort tables in natural order. For example: [ a10, a2 ] -> [ a2, a10 ]; alphabetical: sort tables in alphabetical order. For example: [ a10, a2 ] -> [ a10, a2 ].
    get_all_tables str
    Get all sub-tables including unconfigured tables. Do not set this variable to true if you configure sub-table in another resource, otherwise, conflicts and overwrite will occur. Options: [ false, true ]. false: Default value, do not get unconfigured tables; true: get all tables including unconfigured tables.
    name str
    SSH client certificate name.
    permit_agent_forwarding str
    Enable/disable appending permit-agent-forwarding certificate extension. Valid values: enable, disable.
    permit_port_forwarding str
    Enable/disable appending permit-port-forwarding certificate extension. Valid values: enable, disable.
    permit_pty str
    Enable/disable appending permit-pty certificate extension. Valid values: enable, disable.
    permit_user_rc str
    Enable/disable appending permit-user-rc certificate extension. Valid values: enable, disable.
    permit_x11_forwarding str
    Enable/disable appending permit-x11-forwarding certificate extension. Valid values: enable, disable.
    source_address str
    Enable/disable appending source-address certificate critical option. This option ensure certificate only accepted from FortiGate source address. Valid values: enable, disable.
    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.
    authCa String
    Name of the SSH server public key authentication CA.
    certExtensions List<Property Map>
    Configure certificate extension for user certificate. The structure of cert_extension block is documented below.
    dynamicSortSubtable String
    Sort sub-tables, please do not set this parameter when configuring static sub-tables. Options: [ false, true, natural, alphabetical ]. false: Default value, do not sort tables; true/natural: sort tables in natural order. For example: [ a10, a2 ] -> [ a2, a10 ]; alphabetical: sort tables in alphabetical order. For example: [ a10, a2 ] -> [ a10, a2 ].
    getAllTables String
    Get all sub-tables including unconfigured tables. Do not set this variable to true if you configure sub-table in another resource, otherwise, conflicts and overwrite will occur. Options: [ false, true ]. false: Default value, do not get unconfigured tables; true: get all tables including unconfigured tables.
    name String
    SSH client certificate name.
    permitAgentForwarding String
    Enable/disable appending permit-agent-forwarding certificate extension. Valid values: enable, disable.
    permitPortForwarding String
    Enable/disable appending permit-port-forwarding certificate extension. Valid values: enable, disable.
    permitPty String
    Enable/disable appending permit-pty certificate extension. Valid values: enable, disable.
    permitUserRc String
    Enable/disable appending permit-user-rc certificate extension. Valid values: enable, disable.
    permitX11Forwarding String
    Enable/disable appending permit-x11-forwarding certificate extension. Valid values: enable, disable.
    sourceAddress String
    Enable/disable appending source-address certificate critical option. This option ensure certificate only accepted from FortiGate source address. Valid values: enable, disable.
    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.

    Supporting Types

    AccessproxysshclientcertCertExtension, AccessproxysshclientcertCertExtensionArgs

    Critical string
    Critical option. Valid values: no, yes.
    Data string
    Data of certificate extension.
    Name string
    Name of certificate extension.
    Type string
    Type of certificate extension. Valid values: fixed, user.
    Critical string
    Critical option. Valid values: no, yes.
    Data string
    Data of certificate extension.
    Name string
    Name of certificate extension.
    Type string
    Type of certificate extension. Valid values: fixed, user.
    critical String
    Critical option. Valid values: no, yes.
    data String
    Data of certificate extension.
    name String
    Name of certificate extension.
    type String
    Type of certificate extension. Valid values: fixed, user.
    critical string
    Critical option. Valid values: no, yes.
    data string
    Data of certificate extension.
    name string
    Name of certificate extension.
    type string
    Type of certificate extension. Valid values: fixed, user.
    critical str
    Critical option. Valid values: no, yes.
    data str
    Data of certificate extension.
    name str
    Name of certificate extension.
    type str
    Type of certificate extension. Valid values: fixed, user.
    critical String
    Critical option. Valid values: no, yes.
    data String
    Data of certificate extension.
    name String
    Name of certificate extension.
    type String
    Type of certificate extension. Valid values: fixed, user.

    Import

    Firewall AccessProxySshClientCert can be imported using any of these accepted formats:

    $ pulumi import fortios:firewall/accessproxysshclientcert:Accessproxysshclientcert labelname {{name}}
    

    If you do not want to import arguments of block:

    $ export “FORTIOS_IMPORT_TABLE”=“false”

    $ pulumi import fortios:firewall/accessproxysshclientcert:Accessproxysshclientcert 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